$(document).ready(function(){

	$(".patroci").fadeTo("slow", 0.8);
	
	$("div .img_parceiro").hover(function(){
	$(".patroci", this).fadeTo("slow", 1.0); // This sets the opacity to 100% on hover
	},function(){
	$(".patroci", this).fadeTo("slow", 0.8); // This sets the opacity back to 60% on mouseout
	});
	
	$(".fade").fadeTo("slow", 0.8);
	
	$("div .fotose").hover(function(){
		$(".fade", this).fadeTo("slow", 1.0); // This sets the opacity to 100% on hover
	},function(){
		$(".fade", this).fadeTo("slow", 0.8); // This sets the opacity back to 60% on mouseout
	});
	
});