// JavaScript Document

$(document).ready(function(){
		$('img,html,li,a').pngFix( );
		
		$('.slideWrap').cycle({
			fx: 'growY', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			easing: 'easeinout',
			cleartype:  1,		
			timeout: 5000,
			next:    '.forward',
			pause:   1 
		});
		 
		 $("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
			});
		
		
	});