/* (c) Ger Versluis 2000 version 5.4. 23 December 2001
You may remove all comments for faster loading */
var LowBgColor='#434343'; // Background color when mouse is not over
var LowSubBgColor='#434343'; // Background color when mouse is not over on subs
var HighBgColor= '#434343';//'#3300FF'; // Background color when mouse is over
var HighSubBgColor='#434343'; // Background color when mouse is over on subs
var FontLowColor='#FFFFFF'; // Font color when mouse is not over
var FontSubLowColor='#FFFFFF'; // Font color subs when mouse is not over
var FontHighColor='#FFFFFF'; // Font color when mouse is over
var FontSubHighColor='#FFFFFF'; // Font color subs when mouse is over
var BorderColor='#FF0000'; // Border color
var BorderSubColor='White'; // Border color for subs
var BorderWidth=0; // Border width
var BorderBtwnElmnts=0; // Border between elements 1 or 0
var FontFamily="Verdana" // Font family menu items
var FontSize=7; // Font size menu items
var FontBold=1; // Bold menu items 1 or 0
var FontItalic=0; // Italic menu items 1 or 0
var MenuTextCentered='center'; // Item text position 'left', 'center' or 'right'
var MenuCentered='left'; // Menu horizontal position 'left', 'center' or 'right'
var MenuVerticalCentered=''; // Menu vertical position 'top', 'middle','bottom' or static
var ChildOverlap=0; // horizontal overlap child/ parent
var ChildVerticalOverlap=1; // vertical overlap child/ parent
var StartTop=30; // Menu offset y coordinate
var StartLeft=0; // Menu offset x coordinate
var VerCorrect=0; // Multiple frames y correction
var HorCorrect=0; // Multiple frames x correction
var LeftPaddng=1; // Left padding
var TopPaddng=0; // Top padding
var FirstLineHorizontal=1; // First level items layout horizontal 1 or 0
var MenuFramesVertical=0; // Frames in cols or rows 1 or 0
var DissapearDelay=250; // delay before menu folds in
var TakeOverBgColor=0; // Menu frame takes over background color subitem frame
var FirstLineFrame='navig'; // Frame where first level appears
// var SecLineFrame='MyFrameTwo'; // Frame where sub levels appear
var SecLineFrame='space'; // Frame where sub levels appear
var DocTargetFrame='space'; // Frame where target documents appear
var TargetLoc=''; // span id for relative positioning
var HideTop=0; // Hide first level when loading new document 1 or 0
var MenuWrap=0; // enables/ disables menu wrap 1 or 0
var RightToLeft=0; // enables/ disables right to left unfold 1 or 0
var UnfoldsOnClick=0; // Level 1 unfolds onclick/ onmouseover
var WebMasterCheck=0; // menu tree checking on or off 1 or 0
var ShowArrow=0; // Uses arrow gifs when 1
var KeepHilite=0; // Keep selected path highligthed
var Arrws=['tri.gif',5,10,'tridown.gif',10,5,'trileft.gif',5,10]; // Arrow source, width and height
var strSize;
function getWidth()
{
var x,y;
if (self.innerHeight) // all except Explorer
{
x = self.innerWidth;
y = self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientHeight)
// Explorer 6 Strict Mode
{
x = document.documentElement.clientWidth;
y = document.documentElement.clientHeight;
}
else if (document.body) // other Explorers
{
x = document.body.clientWidth;
y = document.body.clientHeight;
}
return x;
}
function getStartLeft()
{
var pageWidth=getWidth();
var leftOffset=325;
var totalMargin=0;
//if we take the pageWidth-980 (the size of our content) that should give us the size of the margin on both sides
//divide this by 2 and it gives us the left offset sice the content is centered
//we should be able to add that to the offset we want and get the absolute left position
if(pageWidth>1024)
{
totalMargin=pageWidth-1024;
totalMargin=totalMargin/2;
leftOffset+=totalMargin;
}
return leftOffset;
}
StartLeft=getStartLeft();
function BeforeStart(){return;}
function AfterBuild(){return;}
function BeforeFirstOpen(){return;}
function AfterCloseAll(){return;}
var NoOffFirstLineMenus=7; // Number of first level items
Menu1 = new Array("
","","",0,20,90);
Menu2 = new Array("EVENTS","","",0,20,70);
Menu3 = new Array("| ","","",0,20,10);
Menu4 = new Array("EVENT SERIES","","",0,20,80);
Menu5 = new Array("| ","","",0,20,10);
Menu6 = new Array("CONTACT","","",0,20,80);
Menu7 = new Array("
","","",0,20,90);
menuWidth = 320;