$(document).ready(function(){

	$(".fade").fadeTo("slow", 1);
	
	$("div .menu a").hover(function(){
	$(".fade", this).fadeTo("slow", 0.6); // This sets the opacity to 100% on hover
	},function(){
	$(".fade", this).fadeTo("slow", 1); // This sets the opacity back to 60% on mouseout
	});
	
	$(".peixegrandeimg").fadeTo("slow", 0.8);

	$("div .peixegrande").hover(function(){
	$(".peixegrandeimg", this).fadeTo("slow", 1); // This sets the opacity to 100% on hover
	},function(){
	$(".peixegrandeimg", this).fadeTo("slow", 0.8); // This sets the opacity back to 60% on mouseout
	});
	
});
