

jQuery(document).ready(function(){
				   
			Cufon.replace('h1,h2,h3, .megabtn span');	
			
			 
			jQuery(".zoom").hover(function(){
			jQuery(this).stop().fadeTo("medium", 0.6);
			},function(){
			jQuery(this).stop().fadeTo("slow", 1.0); 
			});
			
			jQuery(".galleryback").hover(function(){
			jQuery(this).stop().fadeTo("medium", 0.6);
			jQuery(".galltitle", this).stop().animate({bottom:'0px'},{queue:false,duration:200});
			},function(){
			jQuery(this).stop().fadeTo("slow", 1.0);
			jQuery(".galltitle", this).stop().animate({bottom:'-100px'},{queue:false,duration:200});
			});
			
			
			// Used for hiding popup div in contact form
function hidediv() { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById('#hideShow').style.visibility = 'hidden'; 
} 
else { 
if (document.layers) { // Netscape 4 
document.hideShow.visibility = 'hidden'; 
} 
else { // IE 4 
document.all.hideShow.style.visibility = 'hidden'; 
} 
} 
}

			
			
	
	});








