var href = new Array( "", "aboutus.html", "contactus.html", "services.html", "portfolio.html" );
var disp = new Array( "", "//&nbsp;&nbsp;&nbsp;About Us", "//&nbsp;&nbsp;&nbsp;Contact Us", "//&nbsp;&nbsp;&nbsp;Services", "//&nbsp;&nbsp;&nbsp;Portfolio" );
var stat = new Array( "", "About Us", "Contact Us", "Services", "Portfolio" );

function setmenu() {
	for( x = 1; x < disp.length; x++) {
		menu( x, 'set' );
	}
}

function menu( num, option ) {
	var obj;
	
	if ( ( num >= 1 ) && ( num < href.length ) ) {
		if ( document.layers ) {
			obj = document.layers['menu'+num];
		} else if (document.getElementById('menu'+num) != null) {
			obj = document.getElementById('menu'+num);
		} else if (document.all) {
			obj = document.all['menu'+num];
		}

		if (option == 'off') {
			window.status = "";
			obj.style.background='#290505';
			obj.style.color='#fffaea';
		} else if ( option == 'on' ) {
			window.status = stat[num];
			obj.style.background='#8C6238';
			obj.style.color='#71090a';
		} else if ( option == 'go' ) {
			location.href = href[num];
		} else if ( option == 'set' ) {
			obj.innerHTML = disp[num];
		}
	}
}

