function addMenu()
{
	var m = new Menu();
	var m1 = m2 = m3 = null;
	
	m.addTo(document.getElementById("Menu"));
	
	m.addItem(new Item("Home", function(){document.location.href="index.htm";}));
	m.addItem(m1 = new Submenu("Services"));
	m.addItem(new Item("Case Studies", function(){document.location.href="casestudies.htm";}));
	m.addItem(m3 = new Submenu("News"));
	m.addItem(m2 = new Submenu("About Unicorn"));
	m.addItem(new Item("Contact Us", function(){document.location.href="contactus.htm";}));
	
	m1.addItem(new Item("*e-Learning design", function(){document.location.href="elearning.htm";}));
	m1.addItem(new Item("*Learning management solutions", function(){document.location.href="lms.htm";}));
	m1.addItem(new Item("*On-line assessment", function(){document.location.href="onlineassessment.htm";}));
	m1.addItem(new Item("*Immersive Learning", function(){document.location.href="immersivelearning.htm";}));
	m1.addItem(new Item("*Leadership and Management Training", function(){document.location.href="ilm.htm";}));
	
	m2.addItem(new Item("*About Us", function(){document.location.href="aboutus.htm";}));
	m2.addItem(new Item("*About the Directors", function(){document.location.href="aboutdirectors.htm";}));
	
	m3.addItem(new Item("*Summer 2010 Newsletter", function(){document.location.href="newsletters/2010/06/";}));
	m3.addItem(new Item("*Spring 2010 Newsletter", function(){document.location.href="newsletters/2010/02/";}));
	m3.addItem(new Item("*Summer 2009 Newsletter", function(){document.location.href="newsletters/2009/07/";}));
	m3.addItem(new Item("*Current", function(){document.location.href="news.htm";}));
}