<!-- Begin HORIZONTAL CSS DROP MENU VER 1.50 2009

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY


var showtop		= "no"		//  SHOW TOP MENU IMAGE
var showimage		= "no"		//  SHOW BOTTOM MENU IMAGE


document.write('<div id="menulocation" class="printhide">');
   if (showtop == "yes") {
document.write('<img src="picts/menu-top.jpg" width="150" height="125" class="menutop"></a><br>');
}
document.write('<table cellpadding="0" cellspacing="0" border="0" width="150"><tr><td class="topmargin">');
document.write('<ul id="top-nav">');




// START MENU LINKS - EDIT BELOW THIS AREA




document.write('  <li class="menuT"><a href="index.html">Home</a></li>');




// MENU SEPARATOR 1
document.write('<li class="menuseparator"></li>');






document.write('  <li class="menuT"><a href="" class="parentM">Bird Houses</a>'); 
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="sigbh.html">Signature Series</a></li>');
document.write('      <li><a href="avian-bh.html">Avian Series</a></li>');
document.write('      <li><a href="natural.html">Natural Series</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="" class="parentM">Bird Feeders</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="sigbf.html">Signature Series</a></li>');
document.write('      <li><a href="avian-bf.html">Avian Series</a></li>');
document.write('      <li><a href="natural.html">Natural Series</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="blue-bird.html" class="parentM">Eastern Bluebird House</a>');

document.write('  <li class="menuT"><a href="" class="parentM">Garden Art/Spinners</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="balloons.html">Hot Air Balloons</a></li>');
document.write('      <li><a href="holiday.html">Holiday/Seasonal</a></li>');
document.write('      <li><a href="animal.html">Party Animals</a></li>');
document.write('      <li><a href="trip.html">Triple Spinners</a></li>');
document.write('      <li><a href="gardenspin.html">Garden Spinners</a></li>');
document.write('      <li><a href="vehicle.html">Vehicle Spinners</a></li>');
document.write('      <li><a href="bicycle.html">Bicycle Spinners</a></li>');
document.write('      <li><a href="airplane.html">Airplane Spinners</a></li>');
document.write('      <li><a href="flying.html">Flying Spinners</a></li>');
document.write('      <li><a href="bug.html">Bug Spinners</a></li>');
document.write('      <li><a href="aquatic.html">Aquatic Life Spinners</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="" class="parentM">Windsocks</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="ws.html">Prestige windsocks</a></li>');
document.write('      <li><a href="swimming.html">Swimming Fish</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="" class="parentM">Banners</a>'); 
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="ti.html">David TI Flags-Banners</a></li>');
document.write('      <li><a href="banner.html">Feather Banners</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="planter.html" class="parentM">Planters</a>');

document.write('  <li class="menuT"><a href="lamp.html" class="parentM">Decorative Post Lamp</a>');

document.write('  <li class="menuT"><a href="options.html" class="parentM">Components</a>');

document.write('  <li class="menuT"><a href="faq.html" class="parentM">FAQ</a>');

document.write('  <li class="menuT"><a href="construction.html" class="parentM">Construction</a>');

document.write('  <li class="menuT"><a href="aboutus.html" class="parentM">About Us</a>');

// MENU SEPARATOR 2
document.write('<li class="menuseparator"></li>');

document.write('  <li class="menuT"><a href="guest.html" class="parentM">Guest</a>');

document.write('  <li class="menuT"><a href="contact.htm" class="parentM">Contact</a>');


// MENU SEPARATOR 3
document.write('<li class="menuseparator"></li>');

// END LINKS //



document.write('</ul>');
document.write('</td></tr><tr><td align="center">');




// START MENU IMAGE


   if (showimage == "yes") {
document.write('<br><br><a href="index.html"><img src="picts/menu-image.jpg" width="150" height="75" border="0" class="borders-menuimage"></a><br><br><br>');
}






document.write('</td></tr></table>');
document.write('</div>');




//  End -->




// 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;