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