function initPage()
{
	var navRoot = document.getElementById("navigation");
	var lis = navRoot.getElementsByTagName("li");
	for (var i=0; i<lis.length; i++)
	{
		lis[i].onmouseover = function()
		{
			this.className += " hover";
                }
		lis[i].onmouseout = function()
		{
			this.className = this.className.replace(new RegExp("hover"),"");
		}
	}
}

if (window.attachEvent && !window.opera)
	attachEvent("onload", initPage);

var navigation='<ul class="navigation"> \
					<li class="home"><a href="index.html"><span>Home</span></a></li> \
					<li class="bedbugproducts"><a href="bed-bug-products.html"><span>Bed Bug Products</span></a></li> \
					<li class="buynow"><a href="ecom/buy-now.php"><span>Buy Now</span></a></li> \
					<li class="getthefacts"><a href="get-the-facts.html"><span>Get the Facts</span></a></li> \
                    <div class="call-us">800-526-4222</div> \
				</ul>';

var footer='<div id="footer"> \
<p>&copy;2010 Residex | All Rights Reserved |  1-800-526-4222 | <a href="index.html">Home</a> | <a href="bed-bug-products.html">Bed Bug Producs</a> | <a href="ecom/buy-now.php">Buy Now</a> | <a href="get-the-facts.html">Get the Facts</a></p></div>';



