/***********************************************************************************
*																				   *
*	Copyrights (c) Rackup, LLC. (2008-2010)										   *
*   ALL RIGHTS RESERVED										                       *
*																				   *
***********************************************************************************/

var RAP_CORPORATE = {

	topLinks:
	function(){
		var html='';
		html += '<table width="100%"><tr><td align="center" style="text-align: center;">\n';
		html += '<p class="topLinks" align="center" style="text-align: center;" >\n';
 		html += '		&nbsp;\n';
 		html += '		<a href="index.html" class="topLinks">Home</a>\n';
 		html += '		&nbsp;|&nbsp;\n';
 		html += '		<a href="contact-information.html" class="topLinks">Contact Information</a>\n';
 		html += '		&nbsp;|&nbsp;\n';
 		html += '		<a href="about-us.html" class="topLinks">About us</a>\n';
 		html += '		&nbsp;\n';
		html += '	</p>\n';
		html += '</td></tr></table>\n';
		document.writeln(html);
	},

	pageHeader:
	function(){
		var html='';
		html += '<a href="index.html"><img id="rackup-logo" src="../images/rackup_logo_header.png" alt="Rackup.com" border="0" /></a>';
		html += '<div class="grayLine"></div>';
		document.writeln(html);
	},

	pageFooter:
	function(){
		var html='';
		html += '<div class="grayLine"></div>';
		document.writeln(html);
		this.topLinks();
		html='';
		html += '<p align="center" width="100%">&copy;2010 Rackup LLC.</p>';
		document.writeln(html);
	}


}

