var $currentup;
var $currentdown;
$().ready(function(){
   
   $currentup = $('#promoTab8');
  
   
   $currentup.removeClass('cityname').addClass('citynameNOW'); 	//首页默认选中上海
 
   $('#promoDiv span[veiwDivId]').click(function(){
       var veiwDivId = $(this).attr('veiwDivId');
       var cityid = $(this).attr('promoCityId');
       var promoRootpath = $(this).attr('promoRootpath');
       $('#promoDiv span[veiwDivId]').removeClass('citynameNOW');
       $('#promoDiv span[veiwDivId]').addClass('cityname');   
       $(this).removeClass('cityname').addClass('citynameNOW');
       //alert(cityid + "111111" + veiwDivId);
       $(veiwDivId).load(promoRootpath + "/promoSearch/promoInfoSearchTag.action", {"cityId":cityid});
   });


});


function searchPromoInfo(veiwDivId, promoid, cityid, promoRootpath) {  
     $(veiwDivId).load(promoRootpath + "/promoSearch/promoInfoSearchTag.action", {"cityId":cityid});
//    $(promoid).load(rootpath + "/hotelsearch/promohotelsearch.action", {"cityselect":cityid});
}