openphoto=1;
$(function() {
	$('#box-destaques .photo img').hover(
		function() { $(this).fadeTo('fast', 0.5); },
		function() { $(this).fadeTo('fast', 1); }
	);
	$('#box-content .image img').hover(
		function() { $(this).fadeTo('fast', 0.5); },
		function() { $(this).fadeTo('fast', 1); }
	);
	$('#footer .logos img').hover(
		function() { $(this).fadeTo('fast', 0.5); },
		function() { $(this).fadeTo('fast', 1); }
	);
	$('.logo img').hover(
		function() { $(this).fadeTo('fast', 0.5); },
		function() { $(this).fadeTo('fast', 1); }
	);
		
});

