function CMS_MainMenu_GetBegin(){
	document.write("<table width=\"100%\" cellPadding=\"0\" cellSpacing=\"0\" border=\"0\">");
}

function CMS_MainMenu_GetEnd(){
	document.write("</table>");
}

function CMS_MainMenu_GetItem(piId, psName, psUrl, psDesc, psTarget, psIconURL, psIconWidth, psIconHeight, pbIsCurrMenuItem, pbIsFirstPage)
{
	document.write("<td height=\"37\" style=\"vertical-align:middle;background: url(/images/header_menu_spliter.jpg) no-repeat right top; padding-left: 30px;\">");

	if(pbIsCurrMenuItem)
		document.write("<div class=\"header_menu_item_active\"><a class=\"header_menu_item\" href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "'>" + psName + "</a></div>");
	else
		document.write("<a class=\"header_menu_item\" href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "'>" + psName + "</a>");

	document.write("</td>");
}
