if ( ! com )             var com         = new Object;
if ( ! com.phase_n )     com.phase_n     = new Object;
if ( ! com.phase_n.www ) com.phase_n.www = { menu : true };

// The actual HTML for the menu
com.phase_n.www.menu_html = '<iframe src="/Library/menu.html" id="menu" name="menu" width="110" height="500" marginwidth="0" marginheight="0" align="top" scrolling="auto" frameborder="0">Loading menu...</iframe>';

// Initialise a www.ali.as page
com.phase_n.www.init  = function () {
	if ( com.phase_n.www.menu ) {
		com.phase_n.www.inject_menu();
	}
};

// Add the menu to the page
com.phase_n.www.inject_menu = function () {
	var menu = document.getElementById("menu");
	if ( ! menu ) return;
	td.innerHTML = com.phase_n.www.menu_html;
	com.phase_n.www.menu = false;
	return;
};

// Write the menu to the page
com.phase_n.www.write_menu = function () {
	if ( ! com.phase_n.www.menu ) {
		document.write( '&nbsp;' );
	} else {
		document.write( com.phase_n.www.menu_html );
		com.phase_n.www.menu = false;
	}
	return;
};

// Common website-specific functions
com.phase_n.www.write_tagline = function() {
	// Set the message and location to link to
	var tagline = "Software that adapts to your business, not the other way around";
	var linkto  = "/technology/index.html";

	// Print the tagline
	document.write( "<a href=\"" + linkto + "\">" + tagline + "</a>" );
};
