// 初始化
$(function (){
	// 导航菜单子菜单
	$("ul.topnav li.b").mouseover(function() {
		
		$(this).find("ul.subnav").slideDown('fast').show();

		$(this).hover(function() {
		}, function(){	
			$(this).find("ul.subnav").slideUp('slow');
		});

		}).hover(function() { 
			$(this).addClass("subhover");
		}, function(){
			$(this).removeClass("subhover");
	});


	// 初始化搜索框
	RefFormWord();
	$('#refContent').blur(function (){
		RefFormWord();
	});
	$('#refContent').click(function (){
		RefFormNoWord();
	});
});


var refContentDef = "请输入关键字";
// 显示默认值
function RefFormWord(){
	if ($id('refContent').value == ''){
		$id('refContent').value = refContentDef;
		$id('refContent').style.color = '#a59ea3';
	}
}
// 不显示默认值
function RefFormNoWord(){
	if ($id('refContent').value == refContentDef){
		$id('refContent').value = '';
		$id('refContent').style.color = '#000000';
	}
}

// 查询表单检测
function CheckRefForm(){
	if ($id("refContent").value == '' || $id("refContent").value == refContentDef){
		alert("请输入要搜索的关键字");
		//$id("refContent").value='';$id("refContent").focus();
		return false;
	}
	document.location.href="newsList.asp?typeStr=refer&refContent="+ escape($id("refContent").value);
	return false;
}

