// JavaScript Document

jQuery(document).ready(function(){
				   
		Cufon.replace('h1,h2,h3,.intro p');		   
				   
		jQuery('img,html,li,a,*').pngFix( );
		
		
		 
		 jQuery("a[rel^='prettyPhoto']").prettyPhoto();
		 
			jQuery(".thumbnailwrap img").hover(function(){
			jQuery(this).stop().fadeTo("medium", 0.5); // This should set the opacity to 100% on hover
			},function(){
			jQuery(this).stop().fadeTo("slow", 1.0); // This should set the opacity back to 60% on mouseout
			});
		
		
	});



