// JavaScript Document
function menu()
{
	var new_str = '<div>';
			new_str += '<ul id="nav">';
				new_str += '<li><a href="index.html">Home</a></li>';
				new_str += '<li><a href="profile.html">Profile</a>';
					new_str += '<ul>';
						new_str += '<li><a href="profile.html">History & Activities</a></li>';
						new_str += '<li><a href="vision.html">Vision, Mission & Values</a></li>';
						new_str += '<li><a href="board-of-directors.html">Board of Directors</a></li>';
						new_str += '<li class="last"><a href="financials.html">Financials</a></li>';
					new_str += '</ul>';
				new_str += '</li>';
				new_str += '<li><a href="javascript:void(0);">Our Projects</a>';
					new_str += '<ul>';
						new_str += '<li><a href="massaleh-towers.html">Kuwait Projects</a></li>';
						new_str += '<li class="last"><a href="ramada-downtown.html">International Projects</a></li>';
					new_str += '</ul>';
				new_str += '</li>';
				new_str += '<li><a href="javascript:void(0);">Available for Rent</a>';
					new_str += '<ul>';
						new_str += '<li class="last"><a href="rentnow.html">In Kuwait</a></li>';
					new_str += '</ul>';
				new_str += '</li>';
				new_str += '<li><a href="group1.html">Subsidiaries &amp; Affiliates</a>';
					new_str += '<ul>';
						new_str += '<li><a href="group1.html">Taameer Real Estate Investment Co.</a></li>';
						new_str += '<li><a href="group2.html">Al Corniche Club Company</a></li>';
						new_str += '<li><a href="group3.html">Real Estate Solutions K.S.C</a></li>';
						new_str += '<li><a href="group4.html">Al Ahlea Circle Cleaning K.S.C</a></li>';
						new_str += '<li class="last"><a href="group5.html">VENUS International - Alexandria, Egypt</a></li>';
					new_str += '</ul>';
				new_str += '</li>';
				new_str += '<li><a href="news-events.html">Media Center</a>';
					new_str += '<ul>';
						new_str += '<li><a href="news-events.html">News &amp; Events</a></li>';
						new_str += '<li class="last"><a href="picture-gallery.html">Picture Gallery</a></li>';
					new_str += '</ul>';
				new_str += '</li>';
				new_str += '<li><a href="career.html">Careers</a>';
					new_str += '<ul>';
						new_str += '<li class="last"><a href="career.html">Career Opportunities</a></li>';
					new_str += '</ul>';
				new_str += '</li>';
				new_str += '<li><a href="location.html" class="last">Contact</a>';
					new_str += '<ul>';
						new_str += '<li class="last"><a href="location.html">Location</a></li>';
					new_str += '</ul>';
				new_str += '</li>';
			new_str += '</ul>';
		new_str += '</div>';
 			document.getElementById('menu').innerHTML=new_str;
}
