var products = new Array (	{title: "Atomic News",
						 desc: "Search, save and manage news",
						 url: "atomicnews.html"},
						 {title: "Atomic SEC",
						 desc: "Search, annotate and export filings",
						 url: "atomicsec.html"},
						{title: "AtomicIQ",
						 desc: "Real-time analytics on online content",
						 url: "atomiciqanalytics.html"},
						{title: "Atomic Widgets",
						 desc: "Embed live content in your website",
						 url: "atomicwidgets.html"}
						);

var solutions = new Array (
						{title: "Custom solutions",
						 desc: "Customer-specific enhancements",
						 url: "solutions.html"},
						{title: "Platform",
						 desc: "Technology Platform",
						 url: "platform.html"}
						);
	
function displayMenu(links, currentlink) {
	for(var i=0; i < links.length; i++) {
		if (links[i].title.toLowerCase() == currentlink.toLowerCase()) {
			document.write('<div class="navboxitem_selected">' + '<a href="' + links[i].url + '">' + links[i].title + '</a></div>' + '\n');
		}	
		else {
			document.write('<div class="navboxitem">' + '<a href="' + links[i].url + '">' + links[i].title + '</a></div>' + '\n');
		}
		document.write('<div class="navboxsubitem">' + links[i].desc + '</div>' + '\n');
	}
}

