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