
$(document).ready(function(){
						   $(".sub_meio_dir img ").fadeTo("fast", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".sub_meio_dir img ").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
						   });
						
						});

$(document).ready(function(){
						   $("#chamadas h3").fadeTo("fast", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#chamadas h3 ").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
						   });
						
						});


$(document).ready(function(){
						   $(".portfolio img ").fadeTo("fast", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".portfolio img ").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
						   });
						
						});





$(document).ready(function(){
						   $(".nivo-directionNav").fadeTo("fast", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".nivo-directionNav").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
						   });
						
						});


$(document).ready(function(){
						   $(".rodape_itens").fadeTo("slow", 0.5); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".rodape_itens").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.5); // This should set the opacity back to 30% on mouseout
							   	});
		   
						   $(".rodape_itens img").hover(function(){
						   $(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("fast", 0.3); // This should set the opacity back to 30% on mouseout
							   	});
						   });


