<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY

var showimage1		= "yes"			// SHOW FIRST SIDEBAR IMAGE
var showimage2		= "yes"			// SHOW SECOND SIDEBAR IMAGE
var linkimage1		= "gallery.htm"		// LINK FOR IMAGE 1
var linkimage2		= "gallery.htm"		// LINK FOR IMAGE 2



document.write('<div id="menulocation" style="z-index: 10;" class="printhide">');

document.write('<table cellpadding="0" cellspacing="0" border="0" width="175"><tr><td align="left">');

// MENU IMAGE 1
   if (showimage1 == "yes") {
document.write('<a href="'+linkimage1+'"><img src="picts/menu-picture-1.jpg" border="0" class="sideborder"></a><br>');
}

document.write('<ul id="top-nav">');




// START MENU LINKS - EDIT BELOW THIS AREA
document.write('  <li class="menuT"><a href="bikes.html">Motorcycles</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="canamspyder.html">Can Am Spyder</a></li>');
document.write('      <li><a href="jpmspyder.html">JPM Spyder</a></li>');
document.write('      <li><a href="jpmraptorx.html">JPM Raptor X</a></li>');
document.write('    </ul>');
document.write('  </li>');



document.write('  <li class="menuT"><a href="scooters.html">Scooters</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="roketa.html">MC-54B-250(5RY)</a></li>');
document.write('      <li><a href="pst15011.html">PST 150-11</a></li>');
document.write('      <li><a href="pst150h.html">PST 150-H</a></li>');
document.write('      <li><a href="spider150.html">Spider 150</a></li>');
document.write('      <li><a href="ph150.html">Phoenix 150</a></li>');
document.write('      <li><a href="vintage.html">Vintage</a></li>');
document.write('      <li><a href="venice.html">Venice</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="rentals.html">Rentals</a></li>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="trex.html">Campagna T-Rex</a></li>');
document.write('      <li><a href="roketar.html">MC-54B-250(5RY)</a></li>');
document.write('      <li><a href="piaggio.html">Vespa Piaggio</a></li>');
document.write('      <li><a href="eurotrike.html">Euro Trike</a></li>');
document.write('     <li><a href="canamspyder.html">Can Am Spyder</a></li>');
document.write('      <li><a href="spider150r.html">Spider 150</a></li>');
document.write('      <li><a href="jpmspyder.html">JPM Spyder</a></li>');
document.write('      <li><a href="jpmraptorx.html">JPM Raptor X</a></li>');
document.write('      <li><a href="autos.html">Auto Rentals</a></li>');
document.write('    </ul>');
document.write('  <li class="menuT"><a href="special.html">Special Offer!</a></li>');


document.write('  <li class="menuT"><a href="about.html">About Us</a></li>');




document.write('  <li class="menuT"><a href="contact.htm">Contact</a></li>');



document.write('  <li class="menuT"><a href="index.html">Home</a></li>');



// END LINKS //






document.write('</ul>');
document.write('</td></tr><tr><td align="center">');




// MENU IMAGE 2

   if (showimage2 == "yes") {
document.write('<a href="'+linkimage2+'"><img src="picts/menu-picture-2.jpg" border="0" class="sideborder"></a><br>');
}





document.write('</td></tr></table></div>');











// COPYRIGHT 2009 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE







function IEHoverPseudo() {

	var navItems = document.getElementById("top-nav").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuT") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuT"; }
		}
	}

}
window.onload = IEHoverPseudo;



// -- END -->