$(document).ready( function(){
// Get all images and add a link to this;
$('.contentarea img').replaceWith( function() {
imgSrc = $(this).attr('src') ? $(this).attr('src') : '';
imgStyle = $(this).attr('style') ? $(this).attr('style') : '';
imgRel = $(this).attr('rel') ? $(this).attr('rel') : '';
imgWidth = $(this).attr('width') ? ('width: '+ $(this).attr('width') +'px; ') : '';
imgHeight = $(this).attr('height') ? ('height: '+ $(this).attr('height') +'px;') : '';
if (imgSrc.indexOf('http://') == -1 || imgSrc.indexOf('http://www.hospitalitysro.com') != -1 || imgSrc.indexOf('http://hospitalitysro.com') != -1)
{
if (imgSrc.indexOf('?') != -1) {
imgSrc = imgSrc.split('?');
newHtml = "";
newHtml += "
";
newHtml += "";
}
else {
newHtml = "";
newHtml += "
";
newHtml += "";
}
return newHtml;
}
else
{
return this.text();
}
});
// Activate the fancybox script;
$('.contentarea a.fancybox').fancybox({
'centerOnScroll' : true,
'overlayOpacity' : 0.4
});
});