	CreateMenu("style:horiz;background:transparent;itemwidth:100;itemheight:25;border:1;font:arial;fontsize:12px;icon:Images/Silverball.gif;icon1:Images/Blueball.gif;fontcolour:#808080;fontcolour1:#3132FF;menudelay:750");
	
	AddNode(0,"id:A1;text:Home;link:Content.php?id=1");
	AddNode(0,"id:A2;text:Services");
	AddNode(0,"id:A3;text:Resources");
	AddNode(0,"id:A4;text:Forum;link:phpBB2/index.php");
	AddNode(0,"id:A5;text:About us;link:Content.php?id=13");
	AddNode(0,"id:A6;text:Contact us;link:Content.php?id=3");
	AddNode(0,"id:A7;text:Links;link:Content.php?id=14");
	AddNode(0,"id:A8;text:User");



	//services
	AddNode("A2","id:A201;text:Risk;background:#EDEDF1;link:Content.php?id=12");
	AddNode("A2","id:A202;text:Audit;link:Content.php?id=9");
	AddNode("A2","id:A205;text:Training;link:Content.php?id=15");
	AddNode("A2","id:A206;text:For banks;link:Content.php?id=31");
	AddNode("A2","id:A203;text:Governance;link:Content.php?id=21");
	AddNode("A2","id:A204;text:Compliance;link:Content.php?id=22");
	
	//resources
	AddNode("A3","id:A301;text:Articles etc;background:#EDEDF1;link:Content.php?id=18");
	AddNode("A3","id:A302;text:Software;link:Content.php?id=33");
	AddNode("A3","id:A303;text:Op Risk;link:Content.php?id=43");
	AddNode("A3","id:A304;text:Recreation;link:Content.php?id=10");



	//registration
	AddNode("A8","id:A801;text:Register;background:#EDEDF1;link:Content.php?id=2;width:140");
	AddNode("A8","id:A802;text:Edit profile;link:Content.php?id=34;width:140");
	AddNode("A8","id:A803;text:Forgot password;link:Content.php?id=17;width:140");
	AddNode("A8","id:A804;text:Contact user;link:Content.php?id=40;width:140");


	EndMenu();

/*
	**** Javascript Dropdown Menu ****
		By Dave Bobker 10/06

	Specifications:

	Specifications are set out similar to a css style declaration i.e. separated by ";" with the attribute
	and value separated by ":"
	
	left:			absolute position of left of first item (in pixels)
	top:			absolute position of top of first item (pixels)
	style:		horiz | vert  for horizonal or vertical menus
	link:			page to display in a new window
	id:			identifier of the menu item (must specify a unique id for each item)
	menudelay:		time in milleseconds before menu disappears on rollout of that menu
	border:		width of border in pixels (or 0 if no border required)
	text:			text to display
	itemwidth:		width of an element
	itemheight:		height of an element
	background: 	the background colour (or "transparent")
	background1:	the background colour on rollover (or "transparent")
	backimage:		background image to display in menu cell (specified as relative path eg Images/anIcon.gif)
	icon:			the icon to show next to the text
	icon1:		icon during rollover
	fontcolour:		colour of the text
	fontcolour1:	colour of text on rollover
	

	AddNode		adds a node to the menu  AddNode(parent,specs) where parent is id of parent node (=0 for top level menu)
	CreateMenu		creates base style:  CreateMenu(style).  Must be first routine called
	EndMenu()		must be last routine called - registers all events in the nodes


	To use:  

	Create a <div id="DSBMenu"> element on the page where you want the menu to be.  This is
	referenced by CreateMenu.

	Include the following in the page:  <script src="path/DsbMenu.js></script> in the <head> area.
	Then either create a menu.js file with the above proforma and include in the onload() sequence, or
	code the above routines direct in the page.

	THAT'S IT!


*/