jQuery().ready(function(){
	jQuery('.NameContent').hide();
	jQuery('.product').hover(function(){
		jQuery('.pro_ul li').hover(function(){
								var name_li=jQuery('.pro_ul li');
								var index=name_li.index(jQuery(this));
								jQuery(this).find('#p_show').removeClass('p_h1');
								jQuery(this).find('#p_show').addClass('p_h1_hove');
								jQuery(this).find('.p_h2').hide();
								jQuery(this).find('.NameContent').show()
								
								
								
						
			
										},function(){
											jQuery('.p_h2').show();
											jQuery(this).find('#p_show').addClass('p_h1');
											jQuery(this).find('#p_show').removeClass('p_h1_hove');
											jQuery(this).find('.NameContent').hide()
											}
								)
	
		},function(){
		
					jQuery('.p_h2').show();
					jQuery('.NameContent').hide();
					
			
					}
		)

	
			
			
			
	
	
	
	})
