﻿$(".searchtype li").click(function() {
	$(this).parent("ul").css("background-position",$(this).attr("class") * -180 + "px bottom");
	$(this).siblings("li").css("width", "58px");
	$(this).css("width", "64px");
});
function InitSearchtype(i)
{
  $(".searchtype li:eq(" + i + ")").click();
}

$("#imgSearch").click(function() {
	var keyword = $("#txtKeyword").val();
	if(keyword == "") {
		alert("请输入搜索关键字！");
		return;
	} else {
		$(".searchtype li").each(function(index, domEle) {
			if($(this).width() == 64) {
				window.location.href = "/cn/hall/index_" + $(this).attr("class") + "_" + encodeURI(keyword) + "_1.htm";
				return false;
			}
		});
	}
});

