// JavaScript Document
/* footerNav content 
this file holds all liks for the footer nav.
changes made to this file will propogate throughout the entire site.
*/

function footerNav(){
	var footerNav_content = ''
+'<table class="footerLinks">'
+'<tr>'
+'	<td>'
+'	<a href="http://www.mawss.com/saveMoneySaveWater.html">WATER TIPS</a> | '
+'	<a href="http://www.mawss.com/payMyBill.html">BILL PAY</a> | '
+'	<a href="http://www.mawss.com/contactUs.html">CONTACT US</a> | '
+'	<a href="http://www.mawss.com/joinMawssTeam.html">JOIN MAWSS TEAM</a> | '
+'	<a href="http://www.mawss.com/learningCenter.html">MAWSS LEARNING CENTER</a> | '
+'	<a href="http://www.mawss.com/corporateInfo.html">CORPORATE INFORMATION</a> | '
+'	<a href="http://www.mawss.com/consentDecree.html">CONSENT DECREE</a> | '
+'	<a href="http://www.mawss.com/policiesProcedures.html">POLICIES &amp; PROCEDURES</a> | '
+'	<a href="http://www.mawss.com/mawsstips.htm">PRIVACY PROTECTION</a> | '
+'	<a href="http://www.mawss.com/disclaimer.html">DISCLAIMER</a>'
+'	</td>'
+'</tr>'
+'</table>';
document.write(footerNav_content);
}
