// This is the code for the News Ticker on the Home Page
var nT = 1;

function hideNews() {
	$("#ticker").children().animate({ opacity: '0.0'}, 500).css("left","-5000px");
	}
	
function newsTicker () {
		hideNews();
		$("#news"+nT).animate({opacity: "1"}, 500).css("left","0px");
		if(nT <= $("#ticker div").length+0){
			nT ++
		};
		if(nT > $("#ticker div").length){
			nT = 1
		};
		
}
