document.writeln("<table border=0 cellpadding=0 cellspacing=0 bgcolor='D29148' align=left>")
document.writeln("<tr>")
document.writeln("<td bgcolor=D29148 align=left>")
document.writeln("<div id=masterdiv>")
document.writeln("<div></div>")

document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=0></div>")

document.writeln("<div id=masterdiv >")
document.writeln("<div><a href=index.htm><img border=0 src=images/home_menu.gif vspace=0></a></div>")

document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=0></div>")

document.writeln("<div style=cursor:hand OnClick=SwitchMenu('sub2');>")
document.writeln("<img border=0 src=images/holding_menu.gif vspace=0><br></div>")
document.writeln("<span class=submenu id=sub2>")
document.writeln("<a href=mission.htm>- Mission, Vision & Objective</a><br>")
document.writeln("<a href=history.htm>- History</a><br>")
document.writeln("<a href=management.htm>- Management Team</a><br>")
document.writeln("</span>")

document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=0></div>")

document.writeln("<div style=cursor:hand OnClick=SwitchMenu('sub3');>")
document.writeln("<img border=0 src=images/overview_menu.gif ></div>")
document.writeln("<span class=submenu id=sub3> ")
document.writeln("<a href=alareenoverview.htm>- Overview</a><br>")
document.writeln("<a href=infrastructre.htm>- Infrastructure</a><br>")
document.writeln("<a href=progress.htm>- Progress</a><br>")
document.writeln("</span>")

document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=0></div>")

document.writeln("<div style=cursor:hand OnClick=SwitchMenu('sub5');>")
document.writeln("<img border=0 src=images/marketing_menu.gif  vspace=0 ><br></div>")
document.writeln("<span class=submenu id=sub5> ")
document.writeln("<a href=alareeninvestopportunities.htm>- Investment Opportunities</a><br>")
document.writeln("<a href=contact.htm>- Al Areen Headquarters</a><br>")
document.writeln("<a href=rescomunit.htm>- Residential and &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Commercial Units </a><br>")
document.writeln("</span>");

document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=0></div>")

document.writeln("<div id=masterdiv> ")
document.writeln("<div><a href=developments.htm><img border=0 src=images/developments_menu.gif ></a></div>")

document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=0></div>")

document.writeln("<div id=masterdiv> ")
document.writeln("<div><a href=wildlife.htm><img border=0 src=images/wildlifepark_menu.gif ></a></div>")

document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=0></div>")

document.writeln("<div id=masterdiv> ")
document.writeln("<div><a href=\"javascript:openNewWindow('masterplannew.htm','m1',',width=1020,height=695,toolbar=0,menubar=0,scrollbars=1,left=1,top=1')\"><img border=0 src=images/masterplan_menu.gif ></a></div>")

document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=0></div>")

document.writeln("<div style=cursor:hand OnClick=SwitchMenu('sub7');>")
document.writeln("<img border=0 src=images/news_menu.gif  vspace=0><br></div>")
document.writeln("<span class=submenu id=sub7> ")
document.writeln("<a href=latestnews.htm>- Latest News</a><br>")
document.writeln("<a href=mainpressreleases.htm>- Press Releases</a><br>")
//document.writeln("<a href=newsletter.htm>- Al Areen Times</a><br>")
document.writeln("</span>")

document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=0></div>")

document.writeln("<div style=cursor:hand OnClick=SwitchMenu('sub4');>")
document.writeln("<img border=0 src=images/about_menu.gif ><br></div>")
document.writeln("<span class=submenu id=sub4>")
document.writeln("<a href=location.htm >- Location</a><br>")
document.writeln("<a href=historyandbackground.htm >- History & Background</a><br>")
document.writeln("<a href=financecapital.htm >- Financial Centre</a><br>")
document.writeln("</span>")
document.writeln("</div>")

document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=0></div>")

document.writeln("<div id=masterdiv >")
document.writeln("<div><a href=newsletter.htm><img border=0 src=images/filim_menu.gif  vspace=0></a></div>")

document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=0></div>")

document.writeln("<div id=masterdiv >")
document.writeln("<div><a href=gallery.htm><img border=0 src=images/gallery_menu.gif ></a></div>")

document.writeln("</td>")
document.writeln("</tr>")
document.writeln(" </table>")

/***********************************************
* Switch Menu script- by Martial B of http://getElementById.com/
* Modified by Dynamic Drive for format & NS4/IE4 compatibility
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

if (document.getElementById){ //DynamicDrive.com change
document.write('<style type="text/css">\n')
document.write('.submenu{display: none;}\n')
document.write('</style>\n')
}

function Hide(){
var ar = document.getElementById("masterdiv").getElementsByTagName("span"); 
	for (var i=0; i<ar.length; i++){
			if (ar[i].className=="submenu") 
			ar[i].style.display = "none";
	}		
}


function SwitchMenu(obj){
	if(document.getElementById){
	var el = document.getElementById(obj);
	var ar = document.getElementById("masterdiv").getElementsByTagName("span"); //DynamicDrive.com change
		if(el.style.display != "block"){ //DynamicDrive.com change
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="submenu") //DynamicDrive.com change
				ar[i].style.display = "none";
			}
			el.style.display = "block";
		}else{
			el.style.display = "none";
		}
	}
}

function openNewWindow(URLtoOpen, windowName, windowFeatures) 
{ newWindow=window.open(URLtoOpen, windowName, windowFeatures); }

