<!-- "US_News.htc" -->
<HEAD>
<PUBLIC:COMPONENT tagName=US_NEWS_SCROLL>
  	<PUBLIC:ATTACH event="oncontentready" onevent="fnInit()"/>
</PUBLIC:COMPONENT>
<STYLE>
	#newsheader		
	{
				z-index:99;
				position:relative;
				width:160;
				border-color:black;
				border-style:solid;
				border-width:1;
				text-align:center;
				font-family:helvetica;
				font-weight:bold;
				background-color:black;
				color:white;
			}
	#news		{
				border-color:black;
				border-style:solid;
				border-width:1;
			}
</STYLE>
<SCRIPT type = "text/javascript">
// Entry point
function fnInit()
{
  	defaults.viewLink = document;
	NewsScrollStart()
}
function NewsScrollStart(){
	newsbody.scrollspeed = 1
	newsbody.startdelay = 2
	newsbody.delay = 3
	newsbody.topspace = "2px"
	newsbody.displayHeight=400

	newsbody.style.top=newsbody.topspace
	setTimeout(scrollNewsDiv,( newsbody.startdelay * 1000 ))
}
function ScrollNewsDiv(){
	if(!canmove) return
	newsbody.style.top=parseInt(newsbody.style.top)-(newsbody.scrollspeed)
	if (parseInt(newsbody.style.top)<newsbody.displayHeight*(-1)) 
	{
		newsbody.style.top=0	
		setTimeout(scrollNewsDiv,(newsbody.delay * 1000))
	}
	else {
		setTimeout(scrollNewsDiv,30)
	}
}
var canmove=true
var scrollNewsDiv = ScrollNewsDiv
function mover()
{
	clearTimeout(newsbody.timout)
	canmove=false
}
function mout()
{
	canmove=true
	newsbody.timout = setTimeout(scrollNewsDiv,30)
}
</SCRIPT>
</HEAD>
<BODY>
<div id="newsheader">US NEWS</div>
<div id="news" style="position:relative;width:160;height:230;overflow:hidden;" onmouseover="mover()" onmouseout="mout()">
	<div id="newsbody" style="position:absolute;">
		<script language="JavaScript" src="http://search-result.com/directhit/xml/us_news.js"></script>
	</div>
</div>
</BODY>
