﻿function CMS_MainMenu_GetBegin()
{
	document.write('<table border="0" cellpadding="2" cellspacing="0" width="100%" height="28"><tr>');
}



function CMS_MainMenu_GetEnd()
{
	document.write("</tr></table>");
}


var isFirstItem = true;


function CMS_MainMenu_GetItem(piId, psName, psUrl, psDesc, psTarget, psIconURL, psIconWidth, psIconHeight, pbIsCurrMenuItem, pbIsFirstPage)
{
	//if (! isFirstItem)
	//	document.write('<td width="2"><img src="/images/dot.gif" width="2" height="1" border="0"></td>');

	document.write("<td align='center' background='/images/mainmenuBg.gif' ");

	if(pbIsCurrMenuItem)
		document.write('><nobr><a href="' + psUrl + '" title="' + psDesc + '" target="' + psTarget +
			 '" class="menuHover" style="color: #FFD76C;">' + psName + '</a></nobr></td>');
	else
		document.write("><nobr><a href=" + psUrl + " title='" + psDesc + "' target='" + psTarget +
			 "' class='menu' style='color: white;'>" + psName + "</a></nobr></td>");

	isFirstItem = false;
}




function CMS_MenuItem_GetIcon(piId,  psName, psIconWidth, psIconHeight)
{
	return "";
}