document.write(""); var city_no=0 ; function change_weather() { $('.t_weather').css('display','none').eq(city_no).css('display','block'); city_no ++ ; city_no = city_no % 12 setTimeout('change_weather()',2000) ; } change_weather() ;