var sNScroll;					// ³»¿ë
sNScroll=""
sNScroll+="<a href=http://weather.chosun.com target='_blank'><img src=http://www.chosun.com/images/weather/cs/wx2005_today_11B10101.gif border=0></a><br>";
sNScroll+="<a href=http://weather.chosun.com target='_blank'><img src=http://www.chosun.com/images/weather/cs/wx2005_today_11C10301.gif border=0></a><br>";
sNScroll+="<a href=http://weather.chosun.com target='_blank'><img src=http://www.chosun.com/images/weather/cs/wx2005_today_11C20401.gif border=0></a><br>";
sNScroll+="<a href=http://weather.chosun.com target='_blank'><img src=http://www.chosun.com/images/weather/cs/wx2005_today_11D20501.gif border=0></a><br>";
sNScroll+="<a href=http://weather.chosun.com target='_blank'><img src=http://www.chosun.com/images/weather/cs/wx2005_today_11E00101.gif border=0></a><br>";
sNScroll+="<a href=http://weather.chosun.com target='_blank'><img src=http://www.chosun.com/images/weather/cs/wx2005_today_11F10201.gif border=0></a><br>";
sNScroll+="<a href=http://weather.chosun.com target='_blank'><img src=http://www.chosun.com/images/weather/cs/wx2005_today_11F20501.gif border=0></a><br>";
sNScroll+="<a href=http://weather.chosun.com target='_blank'><img src=http://www.chosun.com/images/weather/cs/wx2005_today_11H10701.gif border=0></a><br>";
sNScroll+="<a href=http://weather.chosun.com target='_blank'><img src=http://www.chosun.com/images/weather/cs/wx2005_today_11H20201.gif border=0></a><br>";
sNScroll+="<a href=http://weather.chosun.com target='_blank'><img src=http://www.chosun.com/images/weather/cs/wx2005_today_11G00201.gif border=0></a><br>";

var nNScrollHeight=18;		// ½ºÅ©·Ñ ¿µ¿ª ¼¼·Î Å©±â
var bNScrollWait=1,bNScrollPause=1;
var nNScrollSpeed = 1;		// Scrolling ¼Óµµ
var nNScrollDelay = 1500;	// ±â»ç°£ ¸ØÃß´Â ½Ã°£
var nNScrollPos = 0, nNScrollLen = 10; // ÇöÀç±â»çÀ§Ä¡,ÃÑ°¹¼ö
var s_pos = 0, s_amount = 24; // ÇöÀçÀ§Ä¡,1È¸½ºÅ©·Ñ»çÀÌÁî

function startNScroll() {
	sDiv = '<div style="left:0px;width:100%;position:absolute;top:0px;" id=nscrolltxt>\n';
	sDiv += sNScroll + sNScroll
	sDiv += '</div>\n'
	document.write(sDiv);
	window.setTimeout("NScroll()",nNScrollDelay);
}

function NScroll() {
	if (bNScrollPause && bNScrollWait) {
		tmp = document.getElementById('nscrolltxt').style;
		tmp.top = parseInt(tmp.top)-nNScrollSpeed;
		if (s_pos++ > s_amount) {
			bNScrollWait=0;
			s_pos=0; nNScrollPos++
			if (nNScrollPos>=nNScrollLen) {
				tmp.top = 0;
				nNScrollPos = 0;
			}
			window.setTimeout("bNScrollWait=1",nNScrollDelay);
		}
	}
	window.setTimeout("NScroll()",40);
}

document.write("<table border=0 cellspacing=0 cellpadding=0>\n"
	+"<tr>\n"
	+"<td width=20><br></td>"
	+"<td class=fGray1><a href=http://weather.chosun.com target='_blank' class='tdm'><img src='/images/weather_tt.gif' border='0'></a>  &nbsp;</td>"
	+"<td style=\"width=103;height:29px\" valign=top>"
	+"<div style=\"width:100%;height:29px;position:absolute;overflow:hidden;\" onMouseover=\"bNScrollPause=0\" onMouseout=\"bNScrollPause=1\" id=\"nscrollarea\">"
	+"<script>startNScroll();</script>"
	+"</div>"
	+"</td>\n"
	+"</tr></table>");
