document.write("2022.03.20(일)강릉6℃2022.03.20(일)광주5℃2022.03.20(일)대구8℃2022.03.20(일)대전5℃2022.03.20(일)부산8℃2022.03.20(일)서울5℃2022.03.20(일)울산8℃2022.03.20(일)인천4℃2022.03.20(일)전주4℃2022.03.20(일)제주8℃2022.03.20(일)춘천6℃2022.03.20(일)충주5℃");
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() ;