document.write("2026.03.12(Thu)강릉10℃2026.03.12(Thu)광주14℃2026.03.12(Thu)대구14℃2026.03.12(Thu)대전14℃2026.03.12(Thu)부산13℃2026.03.12(Thu)서울13℃2026.03.12(Thu)울산13℃2026.03.12(Thu)인천10℃2026.03.12(Thu)전주14℃2026.03.12(Thu)제주17℃2026.03.12(Thu)춘천13℃2026.03.12(Thu)충주14℃");
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() ;