function ssmSetup()
{
	/*
	Configure menu styles below
	NOTE: To edit the link colors, go to the STYLE tags and edit the ssm2Items colors
	*/
	ssmNoItems=0;
	YOffset=150; // no quotes!!
	XOffset=0;
	staticYOffset=10; // no quotes!!
	slideSpeed=1 // no quotes!!
	waitTime=200; // no quotes!! this sets the time the menu stays out for after the mouse goes off it.
	menuBGColor="#404040";
	menuIsStatic="no"; //this sets whether menu should stay static on the screen
	menuWidth=130; // Must be a multiple of 10! no quotes!!
	menuCols=2;
	hdrFontFamily="verdana";
	hdrFontSize="2";
	hdrFontColor="white";
	hdrBGColor="#004000";
	hdrAlign="left"; // Header-align
	hdrVAlign="center";
	hdrHeight="15";
	linkFontFamily="Verdana";
	linkFontSize="1";
	linkBGColor="white";
	linkOverBGColor="#FFFF99";
	linkTarget="_top";
	linkAlign="Left";
	linkImage="";
	barBGColor="#008000";
	barFontFamily="Verdana";
	barFontSize="2";
	barFontColor="white";
	barVAlign="center";
	barWidth=10; // no quotes!!
	barText="Sidemenu"; // <IMG> tag supported. Put exact html for an image to show.
}

function ssmAddHeader(name){ssmItems[ssmNoItems++]=[name]}
function ssmAddItem(name,link,target,colspan,endrow){ssmItems[ssmNoItems++]=[name,link,target,colspan,endrow]}
function ssmClearItems(){ssmNoItems=0;}
function ssmSetBarText(name){barText=name;}
function ssmSetPos(x,y){XOffset=x;YOffset=y;}
function ssmSetFont(name)
{
	hdrFontFamily=name;
	linkFontFamily=name;
	barFontFamily=name;
}
function ssmSetLinkImage(img)
{
	linkImage='<img src="'+img+'" border=0>';
}

