// JavaScript Document
$(document).ready(function() {
						   
	//顶部登录
	$("#top-user-login").each(function() {
		$("#top-user-login").click(function(event) {
			event.preventDefault();
			$(this).toggleClass("tul-2");
		});
		$("#top-user-login").toggle(
			function() {
				$("#index-login").slideDown("fast");
			},
			function() {
				$("#index-login").slideUp("normal");
			}
		);									  
	});
	
	//显示产品中心下拉菜单
	var $sub_menu = $("#menu_2").parent();
	$sub_menu.hover(function() {
		$("#supMenu_product").show();
	});
	$("#supMenu_product")
	.mouseover(function() {
		$(this).show();
	})
	.mouseout(function() {
		$(this).hide();
	});
	
	//友情链接
	$("#partnner").click(function() {
		$("#partner-child").toggle();
	});
	
});
