// JavaScript Document

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

gearlist[0] = new Array("We've added the Sony F3 18-252mm Super 35mm Zoom Lens for the PMW-F3 Super 35mm compact camcorder.",
						"new_gear.htm#ng20111212");
gearlist[1] = new Array("The new Matthews 20'x20' Reversible Chroma Key Green/Blue Screen provides an excellent surface for HD shooters.",
						"new_gear.htm#ng20111102");
gearlist[2] = new Array("Now offering the <em>Dana Dolly Portable Dolly System</em> for rent. Allowing you to do more with less, for less.",
						"new_gear.htm#ng20111026");
gearlist[3] = new Array("The newest member of our Sony CineAlta lineup, the PMW-F3, melds exceptional imagery at an economical price.",
						"new_gear.htm#ng20110621");
gearlist[4] = 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");

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);
};
