// JavaScript Document

	webfxMenuUseHover = true; 
	webfxMenuHideTime = 100; 
	webfxMenuShowTime = 200;
	
	var about = new WebFXMenu;	
	about.add(new WebFXMenuItem("History", "http://uqbc.org.au/index.html?page=56189&pid=38443", "History"));
	about.add(new WebFXMenuItem("Our Team", "http://uqbc.org.au/index.html?page=38853", "Our Team"));
	about.add(new WebFXMenuItem("Representative Honours", "http://uqbc.org.au/index.html?page=57124", "Representative Honours"));
	about.add(new WebFXMenuItem("Our Sponsors", "http://uqbc.org.au/index.html?page=57125", "Our Sponsors"));
	about.add(new WebFXMenuItem("Facilities", "http://uqbc.org.au/index.html?page=57126", "Facilities"));
	about.add(new WebFXMenuItem("Links", "http://uqbc.org.au/index.html?page=38854", "Links"));
	about.add(new WebFXMenuItem("Resources", "http://uqbc.org.au/index.html?page=38856", "Resources"));
	
	var news = new WebFXMenu;	
	news.add(new WebFXMenuItem("Image Gallery", "http://uqbc.org.au/index.html?page=38849", "Image Gallery"));
	news.add(new WebFXMenuItem("Events Calendar", "http://uqbc.org.au/index.html?page=38846", "Events Calendar"));
	news.add(new WebFXMenuItem("Results", "http://uqbc.org.au/index.html?page=57127", "Results"));
	
	var programs = new WebFXMenu;	
	programs.add(new WebFXMenuItem("Learn to Row", "http://www.uqbc.org.au/index.html?page=38861&pid=38462", "Learn to Row"));
	programs.add(new WebFXMenuItem("Social Pass", "http://www.uqbc.org.au/index.html?page=57114", "Social Pass"));
	programs.add(new WebFXMenuItem("Competitor Pass", "http://www.uqbc.org.au/index.html?page=57112", "Competitor Pass"));
	programs.add(new WebFXMenuItem("Elite Development", "http://www.uqbc.org.au/index.html?page=57113", "Elite Development"));
	programs.add(new WebFXMenuItem("College Programs", "http://www.uqbc.org.au/index.html?page=43966&pid=38462", "College Programs"));
	programs.add(new WebFXMenuItem("School Programs", "http://www.uqbc.org.au/index.html?page=53156&pid=38462", "School Programs"));
	programs.add(new WebFXMenuItem("Corporate Programs", "http://www.uqbc.org.au/index.html?page=43971&pid=38462", "Corporate Programs"));
	programs.add(new WebFXMenuItem("Private Coaching", "http://www.uqbc.org.au/index.html?page=57128", "Private Coaching"));
	
	var alumni = new WebFXMenu;	
	alumni.add(new WebFXMenuItem("Blues Recipients", "http://uqbc.org.au/index.html?page=57130", "Blues Recipients"));
	alumni.add(new WebFXMenuItem("Alumni Image Gallery", "http://uqbc.org.au/index.html?page=57132&pid=38855", "Alumni Image Gallery"));
			
	document.write(about);	
	document.write(news);	
	document.write(programs);	
	document.write(alumni);
			
	function displayMenu(showThisMenu, here)
	{	
		// Hide them all first
		about.hide(); 
		news.hide(); 
		programs.hide(); 
		alumni.hide(); 
	
		// Show the one we want		
		webFXMenuHandler.showMenu(showThisMenu, here);
	}