$(function(){   
	
	/* ѡѡɫ start */
	$(".city_changesub span").hover(function(){
		$(this).css("color","#ff6600");
	},function(){
		$(this).css("color","#666666");
	});
	/* ѡѡɫ end */
	/* ѡʾ/ start */
	$("#selectedCity").hover(function(){
		$("#selected div:first-child").show();
	},function(){
		$("#selected div:first-child").hide();
	});
	//
	$("#city").hover(function(){
		$(this).show();
	},function(){
		$(this).hide();
	});
	/* ѡʾ/ end */
  /******************************************************/
    /* ѡʾ/ start*/
	$("#selectedArea").hover(function(){
		$("#selected div:last-child").show();
	},function(){
		$("#selected div:last-child").hide();
	});
    //
	$("#area").hover(function(){
		$(this).show();
	},function(){
		$(this).hide();
	});
	/* ѡʾ/ end*/
	
	

})
/*ͼƬ*/
