$(document).ready(function() 
{	
	$(".error_text").hide();
	$(".error_text").slideDown("slow");
		
	if (document.getElementById("imggallery")) { // stops error on pages where there's no imggallery		
		$("a.group").fancybox(); 
		$("a.inline").fancybox(); 	
		$("a.iframe").fancybox(); 
	}
	if (document.getElementById("slideshow")) { // stops error on pages where there's no imggallery		
		$('.slideshow').cycle({
			fx: 'turnDown' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		});
	}
}); 
