$(document).ready(function() {
 $('#clients img').fadeTo("fast",0.50);
 $('#clients img').hover(function() {
	$(this).fadeTo("fast",1);
	},
	function () {
	$(this).fadeTo("fast",0.50);
	});				
	
});