﻿// JavaScript Document
$(window).load(function(){
		
		//$detail.css("display","none");
	   $(".detailSearchBtn a").click(function(){ 
				var $detail = $("#detailSearch");
				if($detail.is(":visible")){
					$(this).text("展开详细搜索");
					$(this).attr("class","Atype");
					$detail.hide("normal");
				}else{
					$(this).text("关闭详细搜索");
					$(this).attr("class","Btype");
					$detail.show("normal");
				}
				return false;
	   })
})
