$(document).ready(function(){	
	$('.clientCopyArea').hide();	
	$('.clientArea').hover(function(){
		$(this).find('.clientCopyArea').slideDown(400);
	},
	function(){
		$(this).find('.clientCopyArea').slideUp(400);
	});
})
