
$(document).ready(function(){

    //显示热门城市框
	$("#aCity").click(function(oevent){
        oevent.stopPropagation();
        $("#pop_hot_city").show();
        $("#pop_hot_city").css({left:$("#city_from").offset().left-130,top:$("#city_from").offset().top + 32});
        $("#keyword_div").hide();
    });
    $("#city_from").mouseover(function(oevent){
        oevent.stopPropagation();
        $("#pop_hot_city").show();
        $("#pop_hot_city").css({left:$("#city_from").offset().left-130,top:$("#city_from").offset().top + 32});
        $("#keyword_div").hide();
    });

    
    //隐藏
    $(document.body).bind("click",function(oevent){
           $("#pop_hot_city").hide();
           $("#keyword_div").hide();
    });

    //出发城市
    $("#pop_hot_city ul li a").click(function(oevent) {//把热门城市框的城市赋值到txt框中
        
        $("#aCity").text($(this).text());
        //alert($(this).parent().attr('id'));
        $("#pop_hot_city").hide();//点击出发城市后隐藏热门城市框
		oevent.stopPropagation();
        //return true;
    }); 
              
     
});
