// Script to print Aspire website menu
// Copyright 2005 Flipside
// Author: Richard Adams

var menu = '';

function printMenu(menu) {
document.write('<div style="height:100px; width: 100%; overflow: hidden"><img src="images/top.jpg" alt="" width=1559 height=100 border=0></div>');
document.write('<div style="height:70px; width: 100%; overflow: hidden; position: absolute; top: 40px; left: 0px; z-index: 2"><img src="images/logoline.png" alt="" width=1410 height=49 border=0 class=clear></div>');
document.write('<table cellpadding=0 cellspacing=0 border=0 width=100% bgcolor=#ffffff>');
document.write('<tr height=1><td colspan=3 bgcolor=#47619c><img src="images/mask.gif" alt="" width=500 height=1 border=0></td></tr>');
document.write('<tr height=1><td colspan=3 bgcolor=#ffffff><img src="images/mask.gif" alt="" width=500 height=1 border=0></td></tr>');
document.write('<tr height=16><td bgcolor=#47619c>');
document.write('<table cellpadding=0 cellspacing=0 border=0 height=16><tr>');
document.write('<td><img src="images/mask.gif" alt="" width=16 height=16 border=0></td>');
if (menu=='home') { document.write('<td class=navon>Home</td>') }
else { document.write('<td class=nav onMouseOver="this.className=\'navhi\'" onMouseOut="this.className=\'nav\'" onClick="top.location=\'index.html\'"><a href="index.html" class=menu>Home</a></td>') }
document.write('<td><img src="images/mask.gif" alt="" width=16 height=16 border=0></td>');
if (menu=='aboutus') { document.write('<td class=navon>About Us</td>') }
else { document.write('<td class=nav onMouseOver="this.className=\'navhi\'" onMouseOut="this.className=\'nav\'" onClick="top.location=\'aboutus.html\'"><a href="aboutus.html" class=menu>About Us</a></td>') }
document.write('<td><img src="images/mask.gif" alt="" width=16 height=16 border=0></td>');
if (menu=='ourservices') { document.write('<td class=navon>Our Services</td>') }
else { document.write('<td class=nav onMouseOver="this.className=\'navhi\'" onMouseOut="this.className=\'nav\'" onClick="top.location=\'ourservices.html\'"><a href="ourservices.html" class=menu>Our Services</a></td>') }
document.write('<td><img src="images/mask.gif" alt="" width=16 height=16 border=0></td>');
if (menu=='ourproducts') { document.write('<td class=navon>Our Products</td>') }
else { document.write('<td class=nav onMouseOver="this.className=\'navhi\'" onMouseOut="this.className=\'nav\'" onClick="top.location=\'ourproducts.html\'"><a href="ourproducts.html" class=menu>Our Products</a></td>') }
document.write('<td><img src="images/mask.gif" alt="" width=16 height=16 border=0></td>');
if (menu=='casestudies') { document.write('<td class=navon>Case Studies</td>') }
else { document.write('<td class=nav onMouseOver="this.className=\'navhi\'" onMouseOut="this.className=\'nav\'" onClick="top.location=\'casestudies.html\'"><a href="casestudies.html" class=menu>Case Studies</a></td>') }
document.write('<td><img src="images/mask.gif" alt="" width=16 height=16 border=0></td>');
if (menu=='contactus') { document.write('<td class=navon>Contact Us</td>') }
else { document.write('<td class=nav onMouseOver="this.className=\'navhi\'" onMouseOut="this.className=\'nav\'" onClick="top.location=\'cgi-bin/contact.cgi\'"><a href="cgi-bin/contact.cgi" class=menu>Contact Us</a></td>') }
document.write('</tr></table></td></tr>');
document.write('<tr height=1><td colspan=3 bgcolor=#ffffff><img src="images/mask.gif" alt="" width=500 height=1 border=0></td></tr>');
document.write('<tr height=1><td colspan=3 bgcolor=#47619c><img src="images/mask.gif" alt="" width=500 height=1 border=0></td></tr>');
document.write('</table>');
}
