$(document).ready(function() {

		$("a[rel^='prettyPhoto']").prettyPhoto();


		$('.slideshow').cycle({ 
			fx:      	'fade',
		    speed:    	1000,
			timeout:  	3000,
			sync:   	1,
			pause:  	1
		});

		$(".fadeFx").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to 100% when the page loads
		$(".fadeFx").hover(function(){
			$(this).fadeTo("fast", 0.4); // This should set the opacity to 60% on hover
			},function(){
			$(this).fadeTo("slow", 1.0); // This should set the opacity back to 1000% on mouseout
			});


}); 


