function resize() {
	//1.设置IE 火狐内容居中
	if ((navigator.appName == "Microsoft Internet Explorer")
			&& (parseInt(navigator.appVersion) >= 4)) {
		$("body").css("text-align", "center");
	} else {
		$("body").css("text-align", "-moz-center");
	}
	//1 end
	$(".mainNav a").mouseover(function() {
		$(".mainNav a").attr("class", "");
		$("#" + this.id).attr("class", "actived");
		var currentMenuNo = parseInt(this.id.substring(1));
		$(".secondNav div").each(function() {
			$(this).hide();
			$("#subNav" + currentMenuNo).show();
		});
	});
	$(".secondNav div a").click(function() {
		$(".secondNav div a").attr("class", "");
		$(this).attr("class", "actived");
	});
	//main_frame定位==根据菜单
//	var menu = $(".mainNav");
//	var wordInputOffset = menu.offset();
//	if ((navigator.appName == "Microsoft Internet Explorer")
//			&& (parseInt(navigator.appVersion) >= 4)) {
//		$("#main_frame").css("position", "absolute").css("top",
//				wordInputOffset.top + menu.height() - 2 + "px").css("left",
//				wordInputOffset.left + "px").css("z-index", -5);
//	} else {
//		$("#main_frame").css("position", "absolute").css("top",
//				wordInputOffset.top + menu.height() - 26 + "px").css("left",
//				wordInputOffset.left + "px").css("z-index", -5);
//	}
}
