$(document).ready(function(e)
{
	var wrapper_cl = $('.item_case_clients');
	wrapper_cl.bind('mouseenter' , function(e)
	{
		
		var img_wr = $($(this)['context']['children'][1]);
		img_wr =$(img_wr)['context']['children'];
		//$($(this)['context']['children'][0]).css('background-image' , 'url("/css/picture/labelbghover.jpg")');
		$($(img_wr)[0]['children'][0]).css('display' , 'none');
		$($(img_wr)[0]['children'][1]).css('display' , 'block');
		$($(img_wr)[0]['children'][1]).css('margin' , '0 auto');
		 $($(this)['context']['children'][1]).css('color' , '#000');
	});
	wrapper_cl.bind('mouseleave' , function(e)
	{
		var img_wr = $($(this)['context']['children'][1]);
		img_wr =$(img_wr)['context']['children'];
		//$($(this)['context']['children'][0]).css('background-image' , 'url("/css/picture/labelbg.jpg")');
		$($(img_wr)[0]['children'][0]).css('display' , 'block');
		$($(img_wr)[0]['children'][1]).css('display' , 'none');
		$($(img_wr)[0]['children'][0]).css('margin' , '0 auto');
		
		 $($(this)['context']['children'][1]).css('color' , '#5D5D5D');
	});
	
	var one_ohter_client = $('.one_ohter_client');
	one_ohter_client.bind('mouseenter' , function(e)
	{
		$($(this)['context']['children'][0]).css('display' , 'none');
		$($(this)['context']['children'][1]).css('display' , 'block');
		//$($(this)['context']['children'][1]).css('margin' , '0 auto');
	});
		one_ohter_client.bind('mouseleave' , function(e)
	{
		$($(this)['context']['children'][0]).css('display' , 'block');
		$($(this)['context']['children'][1]).css('display' , 'none');
		//$($(this)['context']['children'][0]).css('margin' , '0 auto');
	});
});
