function showBigImage(image, width, height)
{
	popupWin = window.open('/scripts/image.php?image=/'+image+'&w='+width+'&h='+height,'','width='+width+', height='+height+', left=100, top=10, directories=no, location=no, menubar=no, resizable=yes, scrollbars=no, status=no, toolbar=no');
	popupWin.focus();
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
startList = function()
	{
	if (document.all && document.getElementById)
		{
		navRoot = document.getElementById("nav-top");
		for (i=0; i<navRoot.childNodes.length; i++)
			{
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI")
				{ 
				node.onmouseover=function()
					{ this.className+=" over"; }
			//	node.onmousemove=function()
			//		{ window.setTimeout( 4000); }
				node.onmouseout=function()
					{ this.className=this.className.replace(" over", "");}
				}
			}
		}
	}
window.onload = startList;
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

