$(document).ready(function(){
						   $(".hover").fadeTo("slow", 0.7); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".hover").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.7); // This should set the opacity back to 30% on mouseout
						   });
						   });



$(document).ready(function(){

	$("#myController").jFlow({
		slides: "#mySlides",
		controller: ".jFlowControl", // must be class, use . sign
		slideWrapper : "#jFlowSlide", // must be id, use # sign
		selectedWrapper: "jFlowSelected",  // just pure text, no sign
		width: "960px",
		height: "800px",
		duration: 1500,
		prev: ".jFlowPrev", // must be class, use . sign
		next: ".jFlowNext" // must be class, use . sign
	});
});


