
	function menu_DoFSCommand(command, args){
		//alert(command + '=' + args); 
		if(command == "click"){
			switch(args){
				case "home" :		location.href = "index.php";			break;
				case "industries" :	location.href = "industries.php";		break;
				case "services" :	location.href = "services.php";			break;
				case "safety" :		location.href = "safety.php";			break;
				case "client" :		location.href = "client.php";			break;
				case "corporate" :	location.href = "corporate.php";	    break;
				case "language" :	location.href = "language.php";			break;
				//default : alert(command + '=' + args); DEBUG
			}
		}
	}
	
	//Home = home
