var pageTitle = document.title;
var subTitle = pageTitle.substr(27,2);
var imgHL = subTitle.toLowerCase();
var imgPath = "images";


var navbar = "" +
"<TD background=imgs/win_top.gif>" +

// Cuisine and Wines
"<a href='pomodoro.htm'>" +
"<IMG height=20 src='images/btn_cw.gif' width=103 border=0 alt='Cuisine & Wines' name='cu'></a>" +

// Business
"<a href='regal.htm'>" +
"<IMG height=20 src='images/btn_bn.gif' width=74 border=0 alt='Business' name='bu'></a>" +

// Rooms
"<a href='dxRoom.htm'>" +
"<IMG height=20 src='images/btn_vt.gif' width=89 border=0 alt='Rooms' name='vi'></a>" +

// Reservation
"<a href='reservation.htm'><IMG height=20 src='images/btn_ev.gif' width=66 border=0 alt='Reservation' name='ev'></a>" +

// THE HOTEL
"<a href='theHotel.htm'>" +
"<IMG height=20 src='images/btn_th.gif' width=84 border=0 alt='The Hotel' name='th'></a>" +
"</TD>";

document.write(navbar);


// HighLight the image of the main navbar
if(imgHL == "vi") {
	document.images.vi.src = imgPath + "xbtn_vt.gif"
	document.images.ev.src = imgPath + "Lbtn_ev.gif"
}

if(imgHL == "cu") {
	document.images.cu.src = imgPath + "xbtn_cw.gif"
	document.images.bu.src = imgPath + "Lbtn_bn.gif"
}

if(imgHL == "bu") {
	document.images.bu.src = imgPath + "xbtn_bn.gif"
	document.images.vi.src = imgPath + "Lbtn_vt.gif"
}

if(imgHL == "ev") {
	document.images.ev.src = imgPath + "xbtn_ev.gif"
	document.images.th.src = imgPath + "Lbtn_th.gif"
}

if(imgHL == "th") {
	document.images.th.src = imgPath + "xbtn_th.gif"
	//document.images.ev.src = imgPath + "btn_ev.gif"
}





