document.write("2021.11.03(수)강릉12℃2021.11.03(수)광주10℃2021.11.03(수)대구9℃2021.11.03(수)대전8℃2021.11.03(수)부산13℃2021.11.03(수)서울10℃2021.11.03(수)울산11℃2021.11.03(수)인천10℃2021.11.03(수)전주9℃2021.11.03(수)제주15℃2021.11.03(수)춘천11℃2021.11.03(수)충주7℃");
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() ;