		function checkSelectVar(thisVar){
			//var selTarget = document.getElementById("searchType2"); 
			//alert(thisVar);
			if(thisVar == "歌 曲"){
				$("#searchType").attr("value","1");
				//selTarget.options[0].selected=true;
				}
			if(thisVar == "翻 唱"){
				$("#searchType").attr("value","2");
				//selTarget.options[1].selected=true;
				}
			if(thisVar == "新 闻"){
				$("#searchType").attr("value","3");
				//selTarget.options[2].selected=true;
				}
			if(thisVar == "朗 读"){
				$("#searchType").attr("value","4");
				//selTarget.options[3].selected=true;
				}
			}
			
function SelectOpen(){
   var myDiv = document.getElementById("SearchBarSelectDiv");
   myDiv.style.height="128px";
}
function SelectClose(){
   setTimeout("SelectCloseDiv()",800);
}
function SelectCloseDiv(){
   var myDiv = document.getElementById("SearchBarSelectDiv");
   myDiv.style.height="28px";
}
