// JavaScript Document
 //<![CDATA[

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