<!--
/*
	News archive menu
*/
var newsArray = new Array(); 
newsArray.push({title:"October 12, 2009", url:"/news/eFAST.html"});
newsArray.push({title:"February 21, 2009", url:"/news/isocertified.html"});
newsArray.push({title:"January 30, 2009", url:"/news/MCP.htm"});
//newsArray.push({title:"July 14, 2006", url:"/news/071406_news.html"});
//newsArray.push({title:"June 9, 2006", url:"/news/060906_news.html"});
//newsArray.push({title:"June 1, 2006", url:"/news/060106_news.html"});
//newsArray.push({title:"May 8, 2006", url:"/news/050806_news.html"});
//newsArray.push({title:"April 14, 2006", url:"/news/041406_news.html"});
//newsArray.push({title:"April 7, 2006", url:"/news/040706_news.html"});
//newsArray.push({title:"February 5, 2006", url:"/news/020506_news.html"});
//newsArray.push({title:"January 15, 2006", url:"/news/011506_news.html"});
//newsArray.push({title:"March 10, 2005", url:"/news/031005_news.html"});
//newsArray.push({title:"August 5, 2004", url:"/news/080504_news.html"});
//newsArray.push({title:"July 16, 2004", url:"/news/071604_news.html"});
//newsArray.push({title:"June 23, 2004", url:"/news/062304_news.html"});
//newsArray.push({title:"December 20, 2003", url:"/news/122003_news.html"});
//newsArray.push({title:"December 11, 2002", url:"/news/121102_news.html"});



document.write("<ul>"); //start

var currentURL = window.location.href;

//Loop through all news items
for (var i=0; i<newsArray.length; i++) 
{
	var newsURL = newsArray[i].url; //url of news item
	var newsTitle = newsArray[i].title; //news title
	
	/*
		check if news url matches current url  
	*/
	if (currentURL.indexOf(newsURL) >= 0) 
	{ //matches
		
		document.write("<li><div id='active-sublink'>" + newsTitle + "</div></li>");
	
	}
	else 
	{ //no match
	
		document.write("<li><a href='" + newsURL  + "'>" + newsTitle + "</a></li>");
	
	} //end condition
	
} //end loop


document.write("</ul>"); //close
document.write("<p>&nbsp;</p>");

-->