document.write("2021.07.04(일)강릉22℃2021.07.04(일)광주24℃2021.07.04(일)대구31℃2021.07.04(일)대전23℃2021.07.04(일)부산25℃2021.07.04(일)서울23℃2021.07.04(일)울산30℃2021.07.04(일)인천21℃2021.07.04(일)전주23℃2021.07.04(일)제주27℃2021.07.04(일)춘천24℃2021.07.04(일)충주25℃");
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() ;