	var NoOffFirstLineMenus=2;			// Number of first level items
	var LowBgColor="#6699cc";			// Background color when mouse is not over
	var HighBgColor="#003366";			// Background color when mouse is over
	var FontLowColor="white";			// Font color when mouse is not over
	var FontHighColor="white";			// Font color when mouse is over
	var BorderColor='#6699cc';			// Border color
	var BorderWidth=1;					// Border width
	var BorderBtwnElmnts=0;				// Border between elements 1 or 0
	var FontFamily="Verdana, Arial"		// Font family menu items
	var FontSize=8;						// Font size menu items
	var FontBold=0;						// Bold menu items 1 or 0
	var FontItalic=0;					// Italic menu items 1 or 0
	var MenuTextCentered='left';		// Item text position 'left', 'center' or 'right'
	var MenuCentered='left';			// Menu horizontal position 'left', 'center' or 'right'
	var MenuVerticalCentered='top';		// Menu vertical position 'top', 'middle','bottom' or static
	var ChildOverlap=0;					// horizontal overlap child/ parent
	var ChildVerticalOverlap=0;			// vertical overlap child/ parent
	var StartTop=0;						// Menu offset x coordinate
	var StartLeft=6;					// Menu offset y coordinate
	var VerCorrect=0;					// Multiple frames y correction
	var HorCorrect=0;					// Multiple frames x correction
	var LeftPaddng=3;					// Left padding
	var TopPaddng=2;					// Top padding
	var FirstLineHorizontal=0;			// First level items layout horizontal 1 or 0
	var MenuFramesVertical=1;			// Frames in cols or rows 1 or 0
	var DissapearDelay=500;				// delay before menu folds in
	var TakeOverBgColor=0;				// Menu frame takes over background color subitem frame
	var FirstLineFrame='menuframe';		// Frame where first level appears
	var SecLineFrame='menuframe';		// Frame where sub levels appear
	var DocTargetFrame='mainframe';		// 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=1;						// enables/ disables menu wrap 1 or 0
	var RightToLeft=0;					// enables/ disables right to left unfold 1 or 0
	var BottomUp=0;						// enables/ disables Bottom up 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=1;					// Uses arrow gifs when 1
	var KeepHilite=1;					// Keep selected path highligthed
	var MenuUsesFrames=1;				// frames or single page 1 or 0
	var Arrws=['images/tri.gif',10,10,'images/tridown.gif',10,10,'images/trileft.gif',10,10];

function BeforeStart(){return}
function AfterBuild(){return}
function BeforeFirstOpen(){return}
function AfterCloseAll(){return}

// Menu tree
//	MenuX=new Array(ItemText, Link, background image, number of sub elements, height, width, bgcolor, bghighcolor, fontcolor, fonthighcolor,bordercolor,
//			fontfamily,fontsize,fontbold,fontitalic,textalign,statustext);
// 	color and font variables take precedence over the globals when used
// 	fontsize, fontbold and fontitalic are ignored when -1
//	For rollover images ItemText format is:  "rollover:Image1.jpg:Image2.jpg"

Menu1=new Array("CHAM Home","javascript:popupMenu('http://www.cham.co.uk')","",0,19,95,"","","","","","",-1,-1,-1,"","");
Menu2=new Array("Contact CHAM","enquire.aspx","",0,0,0,"","","","","","",-1,-1,-1,"","");

var winMenu = '';
function popupMenu(url) {
	if (winMenu.location && !winMenu.closed) {
		winMenu.location.href = url;
		winMenu.focus();
	}
	else { 
		winMenu = window.open(url,'winMenu','toolbar=yes,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=800,height=600');
	}
}