$(document).ready(function(){
	$.sifr({
				path: '/js/',
				save: true
	});
	$('.page-title, .gallery-item strong, .gtext').sifr({ font: 'typewriter' });
	$('.body-img-shadow img, #content-right img.hshadow').wrap('<span class="img-shadow"></span>');
	$('#gallery .hshadow').each(function (i) {
		var spanWidth = $(this).attr("width")+10;
		var spanHeight = $(this).attr("height")+10;
		$(this).wrap('<span class="shadow-tr"></span>').parent().css({
			"width": spanWidth,
			"height": spanHeight
		}).wrap('<span class="shadow-bl"></span>').parent().css({
				"width": spanWidth,
				"height": spanHeight
		}).wrap('<span class="shadow"></span>').parent().css({
			"width": spanWidth,
			"height": spanHeight
		});
	});
	
	$('.body-img-shadow, .link-box').append('<div class="clear-all"></div>');

	$('.hmail').append('<a href="mailto:info@noomguesthouse.com">info@noomguesthouse.com</a>');
	$('.lightboxShow a').lightBox({
		imageLoading:			'/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
		imageBtnPrev:			'/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
		imageBtnNext:			'/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
		imageBtnClose:			'/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
		imageBlank:				'/images/lightbox-blank.gif'
	   });
});