$(document).ready(function(){
	$("#holder").css({height:$(document).height()});
	$(".cliente").fadeTo("fast",0.5);
	$(".cliente").hover(
		function() {
			$(this).fadeTo("normal",1);
		}, 
		function() {
			$(this).fadeTo("normal",0.5);
		}
	);
});