document.writeln("<table border=0 cellpadding=0 cellspacing=0>")
document.writeln("<tr>")
document.writeln("<td >")
document.writeln("<div id=masterdiv>")
document.writeln("<div></div>")

document.writeln("<div OnMouseOver=SwitchMenu('sub4');>")
document.writeln("<img border=0 src=images/newscenter_menu.jpg ><br></div>")
document.writeln("<span class=submenu id=sub4>")
document.writeln("<a href=news.html >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Sales & Marketing <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;/ BIW Development</a><br>")
document.writeln("<a href=projectdevelopment.html >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Project Development</a><br>")
document.writeln("<a href=aerialview.html >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Aerial View Photography</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=3></div>")

document.writeln("<div OnMouseOver=SwitchMenu('sub2');>")
document.writeln("<img border=0 src=images/biwprofile_menu.jpg ></div>")
document.writeln("<span class=submenu id=sub2> ")
document.writeln("<a href=profile.html>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Profile </a><br>")
document.writeln("<a href=multimedia.html >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Multimedia</a><br>")
document.writeln("<a href=photogallery.html>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Photo Gallery</a><br>")
document.writeln("</span>")






document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=3></div>")

document.writeln("<div OnMouseOver=SwitchMenu('sub3');>")
document.writeln("<img border=0 src=images/aboutbiw_menu.jpg ></div>")
document.writeln("<span class=submenu id=sub3> ")
document.writeln("<a href=chairmansmessage.html>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Chairman's Message  </a><br>")
document.writeln("<a href=aboutBIW.html>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - About BIW </a><br>")
document.writeln("<a href=aboutTameer.html>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - About Tameer </a><br>")
document.writeln("</span>")

document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=3></div>")


document.writeln("<div id=masterdiv> ")
document.writeln("<div><a href=masterplan.html><img border=0 src=images/masterplan_menu.jpg></a></div>")

document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=3></div>")

document.writeln("<div id=masterdiv> ")
document.writeln("<div><a href=infrastructure.html><img border=0 src=images/infrastructure_menu.jpg ></a></div>")

document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=3></div>")

document.writeln("<div OnMouseOver=SwitchMenu('sub7');>")
document.writeln("<img border=0 src=images/investmentinbahrain_menu.jpg vspace=0><br></div>")
document.writeln("<span class=submenu id=sub7> ")
document.writeln("<a href=whyinvestinBIW.html>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Why Invest in BIW</a><br>")
document.writeln("<a href=FTAwithUSA.html>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - FTA with USA</a><br>")
document.writeln("<a href=livinginBahrain.html>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Living in Bahrain</a><br>")
document.writeln("<a href=whyHidd.html>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Why Hidd</a><br>")
document.writeln("</span>")



document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=3></div>")

//document.writeln("<div id=masterdiv> ")
//document.writeln("<div><a href=whyHidd.html><img border=0 src=images/whyhidd_menu.jpg ></a></div>") 

document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=3></div>")


document.writeln("<div id=masterdiv>")
document.writeln("<div><img border=0 src=images/spacer.gif width=50 height=3></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";
		}
	}
}




