






	function set_header_ui(smdd){
		$("#nav_top li").hover(function(){$("div.pop_list",this).show();},function(){$("div.pop_list",this).hide();});
		jQuery("#word").suggests("/ajax/ajax_mdd_search.php",{text:smdd});
		jQuery("#frm_basesear").submit(function(){
			if(jQuery("#stp").val()=="找人"){
				jQuery("#frm_basesear").attr("action","/recnew/usearch.php")
				jQuery("#frm_basesear input[name=q]").val(jQuery("#word").val());
			}
		});

		jQuery("#sel_area").bind("mouseenter",function(){
			jQuery(this).find(".sel_c").show();
		}).bind("mouseleave",function(){
			jQuery(this).find(".sel_c").hide();
		});

		jQuery("#sel_search").bind("mouseenter",function(){
			$("div",this).show();
		}).bind("mouseleave",function(){
			$("div",this).hide();
		}).find("a.sel_li").click(function(){
			jQuery("#sel_search a.selected").text(jQuery(this).text());
			jQuery("#stp").val(jQuery(this).text());
			jQuery("#sel_search a.on").removeClass("on");
			jQuery(this).addClass("on");
			jQuery("#sel_search div").hide();
			if(jQuery(this).text()!="攻略/游记"){
				jQuery("#word").data("disable",true);
			}else{
				jQuery("#word").data("disable",false);
			}
		});
	}





	
