// Javascript document


$(document).ready( function () {	

	$('.credito, .endereco').css({ opacity: 0.50 });
	
	$('.clientes img, .parceiros img').css({ opacity: 0.60 });
	
	$('.clientes img, .parceiros img').mouseover( function () {
		
		$(this).animate({ opacity: 1}, 100);
		
	}).mouseout( function () {
		
			$(this).animate({ opacity: 0.60}, 100);
			
	});
	
});

