function menuItems(path,item,shLastFlag){
var itemArray = new Array();
var itemArrayLink = new Array();
itemArray[1]="";
itemArray[2]="SINAI";
itemArray[3]="BEFORE YOU GO";
itemArray[4]="ARTICLES";
itemArray[5]="UNDERWATER GUIDE";
itemArray[6]="FLORA GUIDE";
itemArray[7]="FAUNA GUIDE";
itemArray[8]="PHOTO GALLERY";
itemArray[9]="BULLETIN BOARD";
itemArray[10]="GUEST BOOK";
itemArray[11]="DOWNLOADS";
itemArray[12]="LINKS";
itemArray[13]="JOBS";
itemArray[14]="HOME";


itemArrayLink[1]="offers.php";
itemArrayLink[2]="sinai/index.html";
itemArrayLink[3]="facts/index.html";
itemArrayLink[4]="articols/index.html";
itemArrayLink[5]="underwaterguide/index.html";
itemArrayLink[6]="floraguide/index.html";
itemArrayLink[7]="faunaguide/index.html";
itemArrayLink[8]="photogallery/index.html";
itemArrayLink[9]="news.htm";
itemArrayLink[10]="guestbook.html";
itemArrayLink[11]="downloads/index.html";
itemArrayLink[12]="links/index.html";
itemArrayLink[13]="jobs/index.html";
itemArrayLink[14]="main.html";


lastItem=14;
if (shLastFlag==0) 
	lastItem=lastItem-1;
document.write('<tr><td ROWSPAN="'+(lastItem*2+1)+'" WIDTH="15">');
document.write('<img SRC="../images/spacer_01.gif" height=1 width=15>');
document.write('</td><td>');
document.write('<img SRC="../images/spacer_01.gif" height=1 width=130>');
document.write('</td></tr>');
for(var i = 1; i <= lastItem; i++)
	{
	if (item==i){
	document.write('<tr><td class="lnk-01" BGCOLOR="#CCCCCC">');
	document.write(itemArray[i]);
	document.write('</td></tr>');
	}
	else {
	document.write('<tr><td class="lnk-01">');
	document.write('<a href="'+path+itemArrayLink[i]+'">'+itemArray[i]+'</a>');
	document.write('</td></tr>');
	}
	document.write('<tr><td BGCOLOR="#000000">');
	document.write('<img SRC="../images/spacer_01.gif" height=1 width=1>');
	document.write('</td></tr>');
	}
}

function row1(path){
document.write('<a href="'+path+'diving/index.html">DIVING</a>');
document.write(' • <a href="'+path+'safari/index.html">SAFARI</a>');
document.write(' • <a href="'+path+'trekking/index.html">TREKKING</a>');
document.write(' • <a href="'+path+'accommodations/index.html">ACCOMMODATION</a>');
}

function row2(path){
document.write('<a href="'+path+'sinai/index.html">SINAI</a>');
document.write(' • <a href="'+path+'facts/index.html">BEFORE YOU GO</a>');
document.write(' • <a href="'+path+'underwaterguide/index.html">UNDERWATER GUIDE</a>');
document.write(' • <a href="'+path+'floraguide/index.html">FLORA GUIDE</a>');
}

function row3(path){
document.write('<a href="'+path+'faunaguide/index.html">FAUNA GUIDE</a>');
document.write(' • <a href="'+path+'photogallery/index.html">PHOTO GALLERY</a>');
document.write(' • <a href="'+path+'news.htm">BULLETIN BOARD</a>');
document.write(' • <a href="'+path+'guestbook.html">GUEST BOOK</a>');
}

function row4(path,shFlag){
document.write('<a href="'+path+'downloads/index.html">DOWNLOADS</a>');
document.write(' • <a href="'+path+'links/index.html">LINKS</a>');
document.write(' • <a href="'+path+'sitemap.html">SITE MAP</a>');
if (shFlag==0)
document.write(' • <a href="'+path+'index.html">HOME PAGE</a>');
}