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