/**
 * Top Stories
 */
window.onload = function()
{
	if( document.getElementById("topStories") != null )
	{
		var topStories = document.getElementById("topStories").getElementsByTagName("li");
		var topStoriesL = topStories.length;

		if( document.getElementById("headLines") != null )
		{
			var headLines = document.getElementById("headLines");
		}
		
		for( var i = 0; i < topStoriesL; i++ )
		{
			topStories[ i ].onmouseover = function()
			{
				for( var j = 0; j < topStoriesL; j++ )
				{
					topStories[ j ].className = topStories[ j ].className.replace( new RegExp("selected"), "" );
				}

				this.className += " selected";

				if( headLines != null )
				{
					headLines.innerHTML = '<a href="' + this.getElementsByTagName("a")[0].href + '">' + this.getElementsByTagName("img")[0].alt + '</a>';
				}
			}
		}
	}
}
