﻿/*
Context menu for site on the CMS system
*/

var sContextMenu = ""

// Menu begin rendering
function CMS_ContextMenu_GetBegin()
{
	sContextMenu = "";
}



// Menu end rendering
function CMS_ContextMenu_GetEnd()
{
	sContextMenu += "";
	document.getElementById("contextMenu").innerHTML = sContextMenu;
}



// Menu item rendering
function CMS_ContextMenu_GetItem(psName, psUrl, psDesc, psTarget, pbIsSelected, biLevel)
{
	sContextMenu += "<p id='sub_menu'>";
	if (pbIsSelected) 
		sContextMenu += "<a href=" + psUrl + " title='" + psDesc + "' target='" + psTarget +	"' style='display:block;background-image:url(/img/li_2.gif);background-repeat:no-repeat;background-position:18px 9px;padding-left:36px;padding-bottom:8px;padding-top:6px;font-size:12px;line-height:120%;color:#0066CC;border-bottom:0px;'>" + psName + "</a>";
	else
		sContextMenu += "<a href=" + psUrl + " title='" + psDesc + "' target='" + psTarget +	"' style='display:block;background-image:url(/img/li_2.gif);background-repeat:no-repeat;background-position:18px 9px;padding-left:36px;padding-bottom:8px;padding-top:6px;font-size:12px;line-height:120%;color:#0066CC;border-bottom:0px;'>" + psName + "</a>";
	
}



// Render if it's first page
function CMS_ContextMenu_GetIfDefaultPage()
{
}





// Render if current menu item node has not any menu item
function CMS_ContextMenu_GetIfWithoutMenu()
{
}


