// 初始化
$(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;
	}
	switch ($id("refMode").value){
		case "web":
			document.location.href="newsList.asp?typeStr=refer&refContent="+ escape($id("refContent").value);
			break;
	
		case "taobao":
			var a=window.open("http://z.alimama.com/tksEncrypt.php?q="+ $id("refContent").value +"&pid=mm_16070858_0_0&unid=&commend=all&search_type=auction&user_action=initiative&f=D9_5_1&at_topsearch=1&sid=%28ed95f3e3fdc8a1fa175786c064ff07e5%29&sort=&spercent=0&st=0");
			break;
	
		case "dangdang":
			var a=window.open("http://union.dangdang.com/transfer/transfer.aspx?dd_catalog=&dd_key="+ $id("refContent").value +"&dd_button=%CB%D1+%CB%F7&backurl=http%3A%2F%2Fsearch.dangdang.com%2Fsearch.php%3Fkey%3D"+ $id("refContent").value +"%26SearchFromTop%3D1&from=P-279550");
			break;
	
		case "joyo":
			var a=window.open("http://www.amazon.cn/search/search.asp?source=sunyi3210-23&searchWord="+ encodeURI($id("refContent").value) +"");
			break;
	
		case "baidu":
			var a=window.open("http://www.baidu.com/baidu?word="+ encodeURI($id("refContent").value) +"&_si=%CB%D1%CB%F7&tn=sunyi3210&fyb=0&tr=mbxnW11j9Df&ie=utf-8");
			break;
	
		case "google":
			var a=window.open("http://www.google.com.hk/search?hl=zh-CN&q="+ encodeURI($id("refContent").value));
			break;
	
		case "youdao":
			var a=window.open("http://www.youdao.com/search?q="+ encodeURI($id("refContent").value));
			break;
	
		case "yahu":
			var a=window.open("http://one.cn.yahoo.com/s?p="+ encodeURI($id("refContent").value));
			break;
	
		case "sogou":
			var a=window.open("http://www.sogou.com/websearch/corp/search.jsp?query="+ encodeURI($id("refContent").value) +"&pid=sunyi3210&searchtype=0");
			break;
	
	}
	return false;
}

// 是否更新
if (todayDate!=lastDate){
	AjaxGetDeal("configDeal.asp?isAutoHomeHtml="+ isAutoHomeHtml);
}
