var img_weather = new Array() ;
img_weather[0] = "http://image.chosun.com/weather/wx2005_today_11B10101.gif" ; //seoul
img_weather[1] = "http://image.chosun.com/weather/wx2005_today_11B20201.gif" ; //incheon
img_weather[2] = "http://image.chosun.com/weather/wx2005_today_11B20601.gif" ; //suwon
img_weather[3] = "http://image.chosun.com/weather/wx2005_today_11C10301.gif" ; //chungjoo
img_weather[4] = "http://image.chosun.com/weather/wx2005_today_11C20301.gif" ; //chunan
img_weather[5] = "http://image.chosun.com/weather/wx2005_today_11C20401.gif" ; //daejeon
img_weather[6] = "http://image.chosun.com/weather/wx2005_today_11D10301.gif" ; //chuncheon
img_weather[7] = "http://image.chosun.com/weather/wx2005_today_11D20501.gif" ; //gangrueng
img_weather[8] = "http://image.chosun.com/weather/wx2005_today_11F10201.gif" ; //jungjoo
img_weather[9] = "http://image.chosun.com/weather/wx2005_today_11F20501.gif" ; //gwangjoo
img_weather[10] = "http://image.chosun.com/weather/wx2005_today_11H10201.gif" ; //pohang
img_weather[11] = "http://image.chosun.com/weather/wx2005_today_11H10701.gif" ; //daegoo
img_weather[12] = "http://image.chosun.com/weather/wx2005_today_11H20101.gif" ; //woolsan
img_weather[13] = "http://image.chosun.com/weather/wx2005_today_11H20201.gif" ; //pusan
img_weather[14] = "http://image.chosun.com/weather/wx2005_today_11G00201.gif" ; //jeju
img_weather[15] = "http://image.chosun.com/weather/wx2005_today_11E00101.gif" ; //woolueng



function viewWeather() {
  var cont = "<table height=28 border=0 cellspacing=0 cellpadding=0><tr>"
		+ "<td><a href=http://weather.chosun.com><img name=WeatherImg src=http://image.chosun.com/weather/wx2005_today_11B10101.gif width=103 height=26 border=0 align=absmiddle></a></td>"
		+ "</tr></table>";
  document.write(cont);
  loopWeater();
  return '';
}

var loopNum = 0 ;  var movTime ;
function loopWeater(){
  document.images['WeatherImg'].src = img_weather[loopNum] ;
  loopNum++ ;
  if (loopNum >= 16) loopNum = 0 ;
  movTime = setTimeout("loopWeater()",2000) ;
}