/************************************************************************ 
* Filename: dynamu.js                                                   * 
* Purpose : Build dynamic menus for www.stcatherines-hotel.co.uk pages  * 
*           1) Ensures menus don't show the current page in menu        *
*-----------------------------------------------------------------------*
* Author  : Kim EW Shell  (C) 2008                                      *  
* Date    : 27th January 2008                                           *
*-----------------------------------------------------------------------*
* Version : 1.0.0 First Version                                         *
*-----------------------------------------------------------------------*
* Revision:                                                             *  
* Date    :                                                             *
* Purpose :                                                             *
*************************************************************************/ 			

/********** Build Menu **********/ 
	var dh = String.fromCharCode(34); <!-- doohickey " -->
	var strMenu   = new String ();
	var strMenHdr =  "<div class="+dh+"navigation"+dh+">";
	var menuArray = new Array();
	var strPagTit = new String();

	menuArray[0]="Booking";
	menuArray[1]="Brochure";
	menuArray[2]="Contact";
	menuArray[3]="Events";
	menuArray[4]="Home";
	menuArray[5]="Links";
	menuArray[6]="Menu";
	menuArray[7]="Newsletter";	
	menuArray[8]="Photos";
	menuArray[9]="Testimonials";

	strMenu = strMenHdr;
	var i = 0;
	strPagTit = document.title;	

	if (strPagTit == "St. Catherine's Hotel Sandown Isle of Wight: South East England Short Breaks Isle of Wight") {
		strPagTit="Home";
	}
	
	for (i in menuArray)
	{

		if (menuArray[i] != strPagTit) 
		{						
			if (menuArray[i] == "Home") {
			  strMenu = strMenu + "<A HREF=" + dh + "http://www.stcatherines-hotel.co.uk/Index.html" + dh + ">" + menuArray[i] + "</A>"+ "|"; 
			}
			else {
			   strMenu = strMenu + "<A HREF=" + dh + "http://www.stcatherines-hotel.co.uk/html/" + menuArray[i] + ".html" +dh + ">" + menuArray[i] + "</A>" + " | " ; 
			   }
			i++;
		}			 
	}
	strMenu=strMenu + "</div>"
	document.write(strMenu);

/********** End Build Menu **********/ 