// JavaScript Document
 //<![CDATA[

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//													Function to display news articles												//
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
$(document).ready(function() { 		
	loadarticle = $("#newshidden1").html();
	//alert(loadarticle);
	$(".newscontainerscroller, #newscontainerscroller").html(loadarticle);
	$("#greenarrow1").fadeIn();
	$(".newslisttitle a").click(function () 
	{	
		$(".greenarrow").each(function(){
			$(".greenarrow").css("display", "none");
		}); 
		currentID = $(this).attr("id");
		news = "#newshidden" + currentID;
		arrow = "#greenarrow" + currentID;
		article = $(news).html();
		$(".newscontainerscroller, #newscontainerscroller").html(article);		
		$(arrow).fadeIn();
		$("#movenewup").fadeIn();
		$("#movenewdown").fadeIn();
		$(".newscontainerscroller, #newscontainerscroller").css("top", "0px");
	});
 });	
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//]]>