// JavaScript Document

var gearlist = new Array();
var currItem = 0;

gearlist[0] = new Array("The Ringo Head&trade; 90 Degree Cameria Mount is a camera accessory that allows an operator to mount any professional video camera at 90 degrees.",
						"new_gear.htm#ng20100108");
gearlist[1] = new Array("Providing the highest quality encoding available today with the new <em>Kulabyte XStreamCast Traveler mobile encoding station</em>.",
						"new_gear.htm#ng20090603_01");
gearlist[2] = new Array("Now offering the new <em>Sony PDW-F800 XDCAM HD Camcorder</em> and <em>PDW-F1600 XDCAM HD studio recorder/player</em> and a <em>UMW-1 XDCAM ingest drive</em>.",
						"new_gear.htm#ng20090603_02");
gearlist[3] = new Array("Allied Pixel upgrades Sony Anycast System to HD expanding capabilities and offerings in the HD market.",
						"new_gear.htm#ng20081217");
gearlist[4] = new Array("Allied Pixel expands its HD equipment base with the addition of the new Sony PMW-EX3 XDCAM EX camcorder to its lineup of camera offerings.",
						"new_gear.htm#ng20080829");

function gearticker() {
	gearTxt = gearlist[currItem][0];
	gearLink = gearlist[currItem][1];
	
	if (currItem == 0) {
		document.getElementById('gearJS').style.display = "none";
	};
	
	$("#gearJS").fadeOut("slow", function() {
		document.getElementById('gearJS').innerHTML = "<a href='" + gearLink + "' target='_self'>" + gearTxt + " <span>Learn More &raquo;</span></a>";
		$("#gearJS").fadeIn("normal");
	});

	if (currItem < gearlist.length - 1)
		currItem++;
	else
		currItem = 0;
		setTimeout('gearticker();', 8000);
};