// JavaScript Document

	
$(document).ready(function(){
	//$(".latest_img").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$(".menuContainer div img").hover(function(){
		$(this).stop().fadeTo("fast", 0.0); // This should set the opacity to 100% on hover
		},function(){
		$(this).stop().fadeTo("fast", 1.0); // This should set the opacity back to 30% on mouseout
	});
	
	$('#gallery').galleryView({
		panel_width: 900,
		panel_height: 300,
		frame_width: 71,
		frame_height: 71
	});

});

