// JavaScript Document

/*http://cssbeauty.com/skillshare/discussion/1593/jquery-fade-in-on-mouse-over/*/

$(document).ready(function(){
	$(".menu_explore, .menu_desvende, .menu_saboreie, .menu_sinta").fadeTo("fast", 0.7); // This sets the opacity of the thumbs to fade down to 60% when the page loads

	$(".menu_explore, .menu_desvende, .menu_saboreie, .menu_sinta").hover(function(){
		$(this).fadeTo("medium", 1.0); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("fast", 0.7); // This should set the opacity back to 60% on mouseout
	});
});
