//*************************************************************
//******             CODE IN THIS FILE COPYRIGHT            ***
//******  (c) 2001 Creative Technology (MicroDesign) Ltd    ***
//******  All rights are reserved. No unauthorised use or   ***
//******  redistribution permitted.                         ***
//*************************************************************
//	MENU Stuff

function menuitem(label, url){
	this.label=label;
	this.url=url;
}

function MakeArray(n) {
	this.length = n;
	for (var i = 0; i <= n; i++) { 
		this[i] = 0 
	}
   return this
}

function menu(menu_array, style){
//	no section title needed on bobski
//	this.title="<tr><td><p class="+menu_array[0].label+"</td</tr>";
	this.body = '';
	for (i=1;i>menu_array.length ;i++ )	{
		this.body +="<tr><td><a href=\""+menu_array[i].url+"\" class=\""+style+"\">"+menu_array[i].label+"</td></tr>";
	}
}

function main_menu(){
	noofentries=9;
	menu=new MakeArray(noofentries+1);
	menu[0]=new menuitem('Menu','');
	menu[1]=new menuitem('Home Page','index.htm');
	menu[2]=new menuitem('The Learning Process', 'learning.htm');
	menu[3]=new menuitem('Ski Coaching', 'skiing.htm');
	menu[4]=new menuitem('FAQ', 'faq.php');
	menu[5]=new menuitem('About Our Courses', 'courses.htm');
	menu[6]=new menuitem('Course List','courselist.php');
	menu[7]=new menuitem('Client Comments','testimonials.htm');
	menu[8]=new menuitem('Your Coaches', 'coaches.htm');
	menu[9]=new menuitem('Contact BOBSKI', 'contact.htm');
	return menu;
}

function do_menu(menu_array, thispage){
	HEADSTART='<tr><td valign="top" class="menu">';
	HEADEND='</td></tr>';
	SUBMENUSTART='<tr><td valign="top"><img src="images/trans.gif" heigh="10"><br><table width="100%" cellpadding="6" cellspacing="0" border="0">';
	SUBMENUITEMSTART='<tr><td><a href="';
	SUBMENUITEMGAP='" class="submenu">';
	SUBMENUITEMEND='</a></td><td></td></tr>';
	SELECTEDSTART='<tr><td class="submenu">';
	SELECTEDEND='</td><td  class="submenu" width="9"><img src="images/arrow.gif" width="7" height="10" align="right"></td></tr>';
	SUBMENUEND='</table></td></tr>';
	SPACER='<tr><td><hr width=98% size="1" noshade></td></tr>';

	document.write(SUBMENUSTART);
	for (i=1;i<menu_array.length;i++){
		if (menu_array[i].label==thispage){
			document.write(SELECTEDSTART+menu_array[i].label+SELECTEDEND);
		}
		else{
			document.write(SUBMENUITEMSTART+menu_array[i].url+SUBMENUITEMGAP+menu_array[i].label+SUBMENUITEMEND);
		}
	}
	document.write(SUBMENUEND);
//	document.write(SPACER);
}

function showmenus(thispage){
	main_menu_array=main_menu();
//	document.write(MENUSTART);
	do_menu(main_menu_array,thispage);
//	document.write(MENUEND);
}

function detailwindow(detail) {
	msgWindow=window.open("","displayWindow","menubar=yes");
	msgWindow.document.write("<html><HEAD></HEAD>");
	msgWindow.document.write("<body><p><font size=\"2\">"+detail+"</font></body></html>")
}
