

$(document).ready(function(){
						   $(".box_executive").fadeTo("slow", 0.6); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".box_executive").hover(function(){
						   $(this).fadeTo("slow", 2.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.6); // This should set the opacity back to 30% on mouseout
							   	});
						   });

$(document).ready(function(){
						   $(".menu_quemsomos_ativo_li_fade").fadeTo("slow", 0.2); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".menu_quemsomos_ativo_li_fade").hover(function(){
						   $(this).fadeTo("slow", 2.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.2); // This should set the opacity back to 30% on mouseout
							   	});
						   });
$(document).ready(function(){
						   $(".bt_quemsomos").fadeTo("slow", 0.5); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".bt_quemsomos").hover(function(){
						   $(this).fadeTo("slow", 2.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
							   	});
						   });
