$(function() {
	/* url中文参数编码 */
	if ($.browser.msie) {
		/*
		$("#encode a").each(function() {
					var href = encodeURI($(this).attr("href"));
					$(this).attr("href", href);
				});
				*/
	}
	/** *导航条变色**** */
	var timeId;
	$("#nav table td").hover(function() {
		var td = $(this);
		timeId = setTimeout(function() {
					td.css("background-image", "url(/images/menu.jpg)");
				}, 200);

	}, function() {
		clearTimeout(timeId);
		$(this).removeAttr("style");
	});

	/** ***新闻标题显示设置**** */
	$("li .newsTitle a").wordLimit();
	/** 系统登陆表单设置* */
	$("#loginForm button[type=submit]").click(function() {
				setTimeout(function() {
							if ($("#loginForm").data("validate")) {
								$("#loginForm")[0].reset();
								$("#loginForm").removeData("validate");
							}
						}, 500);

			});

});
