
function startList() {
	if (document.all&&document.getElementById) {
		dropmenuRoot = document.getElementById("nav");
			for (i=0; i<dropmenuRoot.childNodes.length; i++) {
				node = dropmenuRoot.childNodes[i];
				if (node.nodeName=="LI") {
					
					node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

function hoverMenu(id) {
	//var clas=this.className;
	var root = document.getElementById(id);
	for (var i=0;i<root.childNodes.length;i++ )	{
		node = root.childNodes[i];
		if (node.nodeName=="LI") {
			node.onmouseover = function (){this.className = "hover";	}
		}
		node.onmouseout = function (){this.className = this.className.replace("hover", "");}
	}

}
function outputtails() {
	var footer=
	'<div id="footer_main">'
	+'<div id="partener" style="float:left;margin-left:17px;display:inline;color:#00CCFF;font-weight:700px;font-size:14px;">Links:<a href="http://www.mymmogames.net/" target="_blank"><img src="http://lgp.enjoymmo.com/wp-content/themes/LGPNEW/images/MMOG.gif" alt="Ingle Games" /></a></div>'
	+'<p style="width:800px;">2007-2009&copy;Ingle Games Ltd. Destiny Online (English Edition) is a massively multiplayer online role playing game (MMO RPG) published exclusively by Ingle Games Ltd.All rights reserved </p>'
	+'<div id="footer_logo"><img src="http://lgp.enjoymmo.com/wp-content/themes/LGPNEW/images/logo_inglegames.gif" alt="Ingle Games" /> <img src="http://lgp.enjoymmo.com/wp-content/themes/LGPNEW/images//logo_wanyou.gif" alt="Wan You" /></div>'
	+'<div id="about" style="text-align:left;"><a href="http://www.enjoymmo.com/about_us.html" title="" target="">About Us</a> |<a href="http://www.enjoymmo.com/contact.html" title="" target=""> Contact Us </a>|<a href="http://www.enjoymmo.com/privacy.html" title="" target=""> Privacy Policy </a>| <a href="http://account.destiny.enjoymmo.com/register/eua.html" title="" target=""> Terms of Use </a>| <a href="http://www.enjoymmo.com/sitemap.html" title="" target="">Sitemap</a>'   +'</div>'
   + '</div>';
	document.writeln(footer);
}

