function init(recommendCityCode){
	getSpecialHotelByCity(recommendCityCode,CONTEXT_PATH+"/recommendhotel/recommend-hotel!findHotelByCitycode.dhtml");
}

function nTabsIn(thisObj, Num, citycode) {
	if (thisObj.className == "active") {
		return;
	}
	var tabObj = thisObj.parentNode.id;
	var tabList = document.getElementById(tabObj).getElementsByTagName("li");
	for (i = 0; i < tabList.length; i++) {
		if (i == Num) 
			thisObj.className = "okbg";
		else 
			tabList[i].className = "nobg";
	}
	getSpecialHotelByCity(citycode,CONTEXT_PATH+"/recommendhotel/recommend-hotel!findHotelByCitycode.dhtml");
}

function getSpecialHotelByCity(citycode, urlo) {
     $("#result").html("<img src='" + CONTEXT_PATH + "/images/loading.gif'/> \u6b63\u5728\u88c5\u8f7d\u6570\u636e...");
	 $("#result").load("proxy/proxy.dhtml", {url:urlo+"?sc.cityCode="+citycode}, null);
}

