// JavaScript Document
var productNav={
	hidenAll:function(){
		$('#top01').css('display','none');
		$('#top02').css('display','none');
		$('#top03').css('display','none');
		$('#top04').css('display','none');
		$('.second_content_left_bottom  ul li a').removeClass('current');
	},
	showProductCenter_1:function(){	  
	  productNav.hidenAll();
	  $('#top01').css('display','block');
	  $(this).addClass('current');
	},
	showProductCenter_2:function(){	  
	  productNav.hidenAll();
	  $('#top02').css('display','block');
	  $(this).addClass('current');
	},
	showProductCenter_3:function(){	  
	  productNav.hidenAll();
	  $('#top03').css('display','block');
	  $(this).addClass('current');
	},
	showProductCenter_4:function(){	  
	  productNav.hidenAll();
	  $('#top04').css('display','block');
	  $(this).addClass('current');
	}	
}
jQuery(document).ready(					   
	function(){		
		$('.second_content_left_bottom  ul li a.pro1').bind('mouseover',productNav.showProductCenter_1);
        $('.second_content_left_bottom  ul li a.pro2').bind('mouseover',productNav.showProductCenter_2);
		$('.second_content_left_bottom  ul li a.pro3').bind('mouseover',productNav.showProductCenter_3);
		$('.second_content_left_bottom  ul li a.pro4').bind('mouseover',productNav.showProductCenter_4);
		}
)