$().ready(function(){
	$('#more_city').mouseover(function(){
		$('#city_list').show();
		$('#more_city').attr('class','spanbg');
	});
	$('#city_list').mouseover(function(){
		$('#city_list').show();
		$('#more_city').attr('class','spanbg');
	});
	$('#city_list').mouseout(function(){
		$('#city_list').hide();
		$('#more_city').attr('class','');
	});
	$('#more_city').mouseout(function(){
		$('#city_list').hide();
		$('#more_city').attr('class','');
	});
	$('#hide_citylist').click(function(){
		$('#city_list').hide();
		$('#more_city').attr('class','');
	});
	$('#more_city'). click(function(){
		if($('#more_city').attr('class') != 'spanbg'){
		$('#city_list'). show();
		$('#more_city').attr('class','spanbg');
		}else{
		$('#city_list').hide();
		$('#more_city').attr('class','');
		}
	});
	$('.topnav h1').mouseover(function(){$('.topnav h1').attr('class','bgh');});
	$('.topnav h1').mouseout(function(){$('.topnav h1').attr('class','');});
    $('.style_switch_0').hide();
    $('.style_switch_1').hide();
    $('.style_switch_2').hide();
    $.getScript("http://pv.cheshi.com/ip/rewrite_citylist.php");
});
