function showMenuLev1 (id) {
div1 = document.getElementById('dropmenu_border_1'); div1a = document.getElementById('dropmenu_level_1');
div2 = document.getElementById('dropmenu_border_2'); div2a = document.getElementById('dropmenu_level_2');

div2.style.display = "none";

if (id =="about") {	
div1.style.right = "260px"; div1.style.width="155px"; div1a.style.width="145px";}

if (id =="design") {	
div1.style.right = "250px";div1.style.width="130px"; div1a.style.width="120px";
div2.style.right = "70px";div2.style.width="180px"; div2a.style.width="170px";}

if (id =="intel") {	
div1.style.right = "230px";div1.style.width="110px"; div1a.style.width="100px";
div2.style.right = "80px";div2.style.width="150px"; div2a.style.width="140px";}

if (id =="travel") {	
div1.style.right = "190px";div1.style.width="120px"; div1a.style.width="110px";
div2.style.right = "20px";div2.style.width="170px"; div2a.style.width="160px";}

if (id =="alert") {	
div1.style.right = "90px";div1.style.width="120px"; div1a.style.width="110px";
div2.style.right = "230px";div2.style.width="210px"; div2a.style.width="200px";}

if (id =="zenith") {	
div1.style.right = "60px"; div1.style.width="125px"; div1a.style.width="115px";}

if (id =="careers") {	
div1.style.right = "0px"; div1.style.width="155px"; div1a.style.width="145px";}

if (id =="contact") {	
div1.style.right = "0px"; div1.style.width="105px"; div1a.style.width="95px";}

if (id =="none") { 
	div1.style.display = "none"; div2.style.display = "none";
	} else {
	getData('__scripts.php?id='+id,'dropmenu_level_1'); div1.style.display = "inline";
}

}



function showMenuLev2 (id) {
div1 = document.getElementById('dropmenu_border_1');
div2 = document.getElementById('dropmenu_border_2');

if (id =="none") { 
	div2.style.display = "none";
} else {
	getData('__scripts.php?id='+id,'dropmenu_level_2');
	div2.style.display = "inline";
}
}

