var $current;
$().ready(function(){
   $('li.active').click(function(){
        
       var typeid = $(this).attr('typeid');
       var cityid = $(this).attr('cityid');
       var rootpath = $(this).attr('rootpath');
       var tagdetail = '#' + $(this).attr('tagdetail');


       $current = $(this);
//       alert("typeid:"+typeid+" cityid:"+cityid+" rootpath:"+rootpath)  ;
//       $(tagdetail).load(rootpath + "/hotelsearch/tagsearch.action", {"cityselect":cityid, "typeid":typeid});

   });

});