﻿jQuery(document).ready(function() {
	//设置搜索选项
	jQuery("#l_exh_query_menu > li").click(function() {
		jQuery(this).parent().find("li").removeAttr("class");
		jQuery(this).addClass("focus");
	});

	jQuery("#btnRegister").click(function() {
		top.window.location.href = "/en/attend/register.htm";																 
	});
	
	jQuery("#imgSearch").click(function() {
		var keyword = jQuery("#txtKeyword").val();
		//判断搜索类型
		switch(jQuery("#l_exh_query_menu .focus").text()) {
			case "Products":
				if(keyword == "") {
					top.window.location.href = "/en/hall/pro.htm";
				} else {
					top.window.location.href = "/en/hall/pro_1_" + encodeURI(keyword) + "_1.htm";
				}
				break;
			case "Booth No.":
				if(keyword == "") {
					window.location.href = "/en/hall/";
				} else {
					window.location.href = "/en/hall/index_1_" + encodeURI(keyword) + "_1.htm";					
				}
				break;
			default : //exhibitor
				if(keyword == "") {
					window.location.href = "/en/hall/";
				} else {
					window.location.href = "/en/hall/index_0_" + encodeURI(keyword) + "_1.htm";										
				}
				break;
		}
		
	});
	
});



