var $currentup;
var $currentdown;
$().ready(function(){
   
   $currentup = $('#tab1');
   $currentdown=$('#tab6');
   
   $currentup.removeClass('normal').addClass('active');
   $currentdown.removeClass('normal').addClass('active');

   $('#tabs1 li').click(function(){
       var vochid = $(this).attr('vochid');
       var cityid = $(this).attr('cityid');
       var rootpath = $(this).attr('rootpath');
       $('#tabs1 li').addClass('normal');       
       $(this).removeClass('normal').addClass('active');
       $(vochid).load(rootpath + "/hotelsearch/vochhotelsearch.action", {"cityselect":cityid});

   });
   
   

   $('#tabs01 li').click(function(){
       var vochid = $(this).attr('vochid');
       var cityid = $(this).attr('cityid');
       var rootpath = $(this).attr('rootpath');
       $('#tabs01 li').addClass('normal');       
       $(this).removeClass('normal').addClass('active');
       $(vochid).load(rootpath + "/hotelsearch/vochhotelsearch.action", {"cityselect":cityid});

   });

});


function searchVochHotel(vochid, promoid, cityid, rootpath) {  
    $(vochid).load(rootpath + "/hotelsearch/vochhotelsearch.action", {"cityselect":cityid});
//    $(promoid).load(rootpath + "/hotelsearch/promohotelsearch.action", {"cityselect":cityid});
}