var topSearch={timeid:"",timeid2:"",cS_id:0,oldKey:"",getHotKey:function(){timeid2 = window.setInterval("topSearch.get()",100);},hideHotKey:function(){$("#search_hot").hide();},clearHotKey:function(){setTimeout("topSearch.hideHotKey()",200);window.clearInterval(timeid2);},addKey:function(val){$("#key").val(val);},get:function(){var key=$("#key").val();if(key.length >= 1 && key.length <= 10){if(topSearch.oldKey != key){$.get("/xmlData/searchKey.ashx?key="+escape(key), function(data){if(data=="error"){$("#search_hot").hide();$("#search_hot").html("");}else{var ar=data.split("\r\n");var str="";var Max=ar.length;for(var i=0;i<ar.length;i++){str+="<a href=\"javascript:topSearch.addKey('"+ar[i]+"')\" target=\"_self\">"+ar[i].replace(key,"<strong>"+key+"</strong>")+"</a>";}$("#search_hot").html(str);$("#search_hot").show();}});}else{if($("#search_hot").html()!=""){$("#search_hot").show();}}}else{$("#search_hot").hide();}topSearch.oldKey = key;},show:function(){clearTimeout(topSearch.timeid);$('#search_menu').show();},hide:function(){topSearch.timeid=setTimeout(function(){$('#search_menu').hide()},300);},array:[],arrayAdd:function(ar){topSearch.array.push(ar);},change:function(s_id){$("#onSearch").html(topSearch.array[s_id].type);$("#search_menu").hide();var keys="<strong>热词：</strong>";for(var i=0; i<topSearch.array[s_id].key.length; i++){keys += "<a href='/search.aspx?key="+escape(topSearch.array[s_id].key[i])+"&ss_leixing="+escape(topSearch.array[s_id].type)+"'>" + topSearch.array[s_id].key[i] + "</a>　";}$("#hotWords").html(keys);if(topSearch.cS_id != 0){if($("#key").val()==topSearch.array[topSearch.cS_id].help){$("#key").val(topSearch.array[s_id].help);}}else{$("#key").val(topSearch.array[s_id].help);}topSearch.cS_id = s_id;},Load:function(index){var str = "<ul>";for(var i=0; i<topSearch.array.length; i++){str += "<li><a href='javascript:topSearch.change("+i+")' target='_self'>"+topSearch.array[i].type+"</a></li>"}str += "</ul>";$("#search_menu").html(str);topSearch.change(index);},Go:function(){var v=$("#key").val();v=v.replace("　"," ");if(v==topSearch.array[topSearch.cS_id].help){location.href=topSearch.array[topSearch.cS_id].url;return false;}if(v.length < 1){alert("关键词不能少于1个字符");return false;}if(v.length > 10){alert("关键词不能大于10个字符");return false;}$("#ss_leixing").val(topSearch.array[topSearch.cS_id].type); return true;}};$("#key").focus(function(){if($(this).val()==topSearch.array[topSearch.cS_id].help)$(this).val('');topSearch.getHotKey();});$("#key").blur(function(){if($(this).val()=='')$(this).val(topSearch.array[topSearch.cS_id].help);topSearch.clearHotKey();});$("#search_menu").hover(function(){topSearch.show();},function(){topSearch.hide();});$("#onSearch").hover(function(){topSearch.show();},function(){topSearch.hide();});$("#onSearch").click(function(){topSearch.show();});
