$(document).ready(function() { 
	$('.clinetss a').hide();
	$('.clinetss').hover(
		function(){
			$(this).find('img').eq(1).hide();
			$(this).find('a').show();
		}, function(){
			$(this).find('a').hide();
			$(this).find('img').eq(1).show();
		}
	);
});
