	function Load ()
	{
		TJKSetEvents();
		AlternateRows()
		/* Google Analytics Code */
		_uacct = "UA-68250-6";
		urchinTracker();
	}
	
	// Alternate Table Row Colors 
	function AlternateRows(StartRow, RowJump)
	{ // Base code from: http://www.sitepoint.com/article/background-colors-javascript
		var Start, Alternate;
		if (StartRow == null) Start = 2; else Start = StartRow;
		if (RowJump == null) Alternate = 2; else Alternate = RowJump;
		
		var Tables = document.getElementsByTagName("table");  
		for(numTables=0; numTables < Tables.length; numTables++)
		{
			var Rows = Tables[numTables].getElementsByTagName("tr");  
	
			for(i=Start; i < Rows.length; i+=Alternate)
			{
				Rows[i].className += " AlternateRow";
			} 	//end for loop
		} 	// end for loop
	} 	// end function	
