//Created 29 Mar 2008
//Author: nivlam.com
//Permission given to use the script provided that this notice remains as is.

var icons = ['myComp', 'chinSP', 'euroSP', 'spGap', 'stats', 'weapon', 'armor', 'alchemy', 'tablet', 'forum'];

function clearMenu() 
{
	document.getElementById('startMenuPopup').style.display = "none";
}

function highlight(a) 
{
	for (var i = 0; i < icons.length; i++)
		document.getElementById(icons[i]).className = "iconBox";

	a.className = "highlightIcon";
}

