// inner fade

		$(document).ready(
				function(){					
					$('.rotator').innerfade({
						speed: 700,
						timeout: 3000,
						type: 'sequence',
						containerheight: '300px'
					});		
			});
		$(document).ready(
				function(){					
					$('.side-logo').innerfade({
						speed: 500,
						timeout: 2200,
						type: 'sequence',
						containerheight: '132px'
					});
			});

// web offers gallery

//$(document).ready(function(){

	//$("h2").append('<em></em>')

	//$(".page-id-15 .main-text a").click(function(){
	
		//var largePath = $(this).attr("href");
		//var largeAlt = $(this).attr("title");
		
		//$("#largeImg").attr({ src: largePath, alt: largeAlt });
		
		//$("h2 em").html(" (" + largeAlt + ")"); return false;
	//});
	
//});

// Hide search text

$(document).ready(function(){
	$("#s").blur(function(){
		if(!$(this).val()) $(this).val("Search");
	});
	$("#s").focus(function(){
		if($(this).val() == "Search") $(this).val("");
	});
});

