// JavaScript Document

var newslist = new Array();
var currItem = 0;

newslist[0] = new Array("Dennis Spence of <strong>Comcast SportsNet</strong> called on <strong>Allied Pixel</strong> to assist on several recent projects for the <strong>Philadelphia Sixers and Flyers</strong>.",
						"assets/pdf/pr/20120118_alliedpixel_pr.pdf");
newslist[1] = new Array("<strong>Allied Pixel</strong> produced a series of television commercials for the undergraduate program at <strong>Neumann University</strong> using the new Sony F3 Super 35mm camera.",
						"assets/pdf/pr/20111219_alliedpixel_pr.pdf");
newslist[2] = new Array("<strong>Allied Pixel</strong> released its new <strong>live HD webcasting</strong> service, providing live HD streaming to mobile devices, tablets and desktop browsers in resolutions up to 720P.",
						"assets/pdf/pr/20111110_alliedpixel_pr.pdf");
newslist[3] = new Array("The <strong>Telly Awards</strong> competition honored <strong>Allied Pixel</strong> client <strong>Genesis Rehabilitation Services</strong> and <strong>Genesis HealthCare</strong> with two awards this season.",
						"assets/pdf/pr/20110711_alliedpixel_pr.pdf");
newslist[4] = new Array("The prestigious <strong>Telly Awards</strong> competition honored <strong>Allied Pixel</strong> client <strong>University of Pennsylvania</strong> with a bronze award for a video it produced for the Wharton School of Business.",
						"assets/pdf/pr/20110330_alliedpixel_pr.pdf");

function newsticker() {
	newsTxt = newslist[currItem][0];
	newsLink = newslist[currItem][1];
	
	if (currItem == 0) {
		document.getElementById('newsJS').style.display = "none";
	};
	
	$("#newsJS").fadeOut("slow", function() {
		document.getElementById('newsJS').innerHTML = "<a href='" + newsLink + "' target='_blank'>" + newsTxt + " <span>Learn More &raquo;</span></a>";
		$("#newsJS").fadeIn("normal");
	});

	if (currItem < newslist.length - 1)
		currItem++;
	else
		currItem = 0;
		setTimeout('newsticker();', 8000);
};
