//Neptune.Net

var color_bg = '#0055aa';
var color_on = '#0000ff';
var color_off = '#0077cc';
var coords = new Array();
var links = new Array();
var obj = null;
var sec = null;
var style = null;
var timer = null;

coords['itservices'] = Array(20,231,
	[
		['Professional I.T. Services','/IT Services/IT Services/IT Services.php'],
		['I.T. Help Desk','/IT Services/IT Help Desk/IT Help Desk.php'],
		['Network Monitoring','/IT Services/Network Monitoring/Network Monitoring.php'],
		['Server Monitoring','/IT Services/Server Monitoring/Server Monitoring.php'],
		['Disaster Recovery','/IT Services/Disaster Recovery/Disaster Recovery.php'],
		['VPN / Telecommuting','/IT Services/VPN Telecommuting/VPN Telecommuting.php'],
		['I.T. Management White Papers','/IT Services/IT Management White Papers/IT Management White Papers.php'],
		['Submit I.T. Helpdesk Request','javascript:helpdesk_request_popup();'],
	]
);
coords['emailservices'] = Array(126,231,
	[
		['SPAM-Free E-Mail Services','/Email/spam_free.php'],
		['Individual E-Mail Accounts','/Email/individual.php'],
		['Corporate E-Mail Services','/Email/corporate.php'],
		['Neptune.Net Web Mail','/Email/webmail.php'],
		['Anti-SPAM White Papers','/Email/white_papers.php'],
	]
);
coords['networkarchitecture'] = Array(252,231,
	[
		['Corporate Network Design','/Network Architecture/Network Architecture/Network Architecture.php'],
		['Local Area Networks','/Network Architecture/Local Area Networks/Local Area Networks.php'],
		['Wide Area Networks','/Network Architecture/Wide Area Networks/Wide Area Networks.php'],
		['Virtual Private Networks','/Network Architecture/Virtual Private Networks/Virtual Private Networks.php'],
		['Network Security','/Network Architecture/Network Security/Network Security.php'],
		['Wireless Networks','/Network Architecture/Wireless Networks/Wireless Networks.php'],
	]
);
coords['webservices'] = Array(378,231,
	[
		['Neptune\'s Web Services','/WebServices/webservices.php'],
		['Web Hosting Services','/WebServices/hosting.php'],
		['Website Design Services','/WebServices/design.php'],
		['Website Maintenance Services','/WebServices/maintenance.php'],
		['Web Marketing Services','/WebServices/marketing.php'],
	]
);
coords['dcservices'] = Array(504,231,
	[
		['Neptune\'s Data Center','/Data Center Services/Data Center Services/Data Center Services.php'],
		['Server Colocation Services','/Data Center Services/Server Colocation/Server Colocation.php'],
		['Managed Services','/Data Center Services/Managed Services/Managed Services.php'],
		['Remote Data Backups','/Data Center Services/Remote Data Backups/Remote Data Backups.php'],
		['Disaster Recovery Services','/Data Center Services/Disaster Recovery/Disaster Recovery.php'],
	]
);
coords['onlinehelp'] = Array(630,231,
	[
		['Frequently Asked Questions','/OnlineHelp/Frequently Asked Questions/Frequently Asked Questions.php'],
		['Technical Glossary','/OnlineHelp/Technical Glossary/Technical Glossary.php'],
		['Neptune Web Mail User Guide','javascript:webmail_user_guide_popup();'],
		['Setting Up Microsoft Outlook','/OnlineHelp/Setting Up Microsoft Outlook/Setting Up Microsoft Outlook.php'],
		['Setting Up Outlook Express','/OnlineHelp/Setting Up Outlook Express/Setting Up Outlook Express.php'],
		['Acceptable Use Policy','/legal/aup.php'],
		['Privacy Statement','/legal/privacystatement.php'],
		['Service Level Agreement','/legal/sla.php'],
		['Submit I.T. Helpdesk Request','javascript:helpdesk_request_popup();'],
	]
);
coords['contactus'] = Array(700,231,
	[
		['Send Us An E-Mail Message','javascript:email_us_popup();'],
		['Neptune.Net Billing Address','javascript:billing_address_popup();'],
		['Send Us A FAX','javascript:fax_number_popup();'],
		['Neptune Telephone Numbers','javascript:phone_number_popup();'],
		['Submit I.T. Helpdesk Request','javascript:helpdesk_request_popup();'],
	]
);

for ( sec in coords ) {
	document.write(
		"<TABLE"
		+" onMouseOver=\"hide('off');\""
		+" onMouseOut=\"hide('on');\""
		+" CELLPADDING='0' CELLSPACING='0' ID='" + sec + "'>"
	);
	for ( link in coords[sec][2] ) {
		document.write(
			"<TR>"
			+"<TD CLASS='pope'"
			+" onMouseOver=\"subrow(this,'on');\""
			+" onMouseOut=\"subrow(this,'off');\""
			+" onClick=\"window.location='" + coords[sec][2][link][1] + "';\""
			+">" + coords[sec][2][link][0] + "</TD>"
			+"</TR>"
		);
	}
	document.write("</TABLE>");
	style = document.getElementById(sec).style;
	style.visibility = "hidden";
	style.position="absolute";
	style.top=coords[sec][1];
	style.left=coords[sec][0];
}
function hide(val) {
	if ( val == 'on' ) {
		timer = setTimeout("nav_hide()", 100);
	} else {
		if (timer != null) clearTimeout(timer);
	}
}
function nav_hide() {
	for ( sec in coords ) {
		document.getElementById(sec).style.visibility = "hidden";
		document.getElementById("h"+sec).style.backgroundColor=color_bg;
	}
}
function nav_on(obj,id) {
	nav_hide();
	if (timer != null) clearTimeout(timer);
	obj.style.backgroundColor=color_on;
	document.getElementById(id).style.visibility = "visible";
}
function subrow(obj,act) {
	if ( act == 'on' ) {
		obj.style.backgroundColor=color_on;
	} else {
		obj.style.backgroundColor=color_off;
	}
}
