var exOK=true
function menu() {
if (exOK){
var e=document.getElementById('mens')
var mens
mens ='<ul><li><h3><a href=\"/free/\">Dictionary</a></h3><ul>'
mens+='	<li><a href=\"/free/\">English Dictionary</a>.</li>'
mens+='	<li><a href=\"dictionary.htm\">Translation dictionary</a>.</li>'
mens+='	<li><a href=\"EnglishFrenchDictionary.htm\">English French dictionary</a>.</li>'
mens+='	<li><a href=\"FrenchEnglishDictionary.htm\">French English dictionary</a>.</li>'
mens+='	<li><a href=\"EnglishSpanishDictionary.htm\">English Spanish dictionary</a>.</li>'
mens+='	<li><a href=\"SpanishEnglishDictionary.htm\">Spanish English dictionary</a>.</li>'
mens+='	<li><a href=\"EnglishGermanDictionary.htm\">English German dictionary</a>.</li>'
mens+='	<li><a href=\"GermanEnglishDictionary.htm\">German English dictionary</a>.</li>'
mens+='	<li><a href=\"EnglishDutchDictionary.htm\">English Dutch dictionary</a>.</li>'
mens+='	<li><a href=\"DutchEnglishDictionary.htm\">Dutch English dictionary</a>.</li>'
mens+='	<li><a href=\"EnglishPortugueseDictionary.htm\"><small>English Portuguese dictionary</small></a>.</li>'
mens+='	<li><a href=\"PortugueseEnglishDictionary.htm\"><small>Portuguese English dictionary</small></a>.</li>'
mens+='	<li><a href=\"trans.htm\">Language translation</a>.</li>'
mens+='	<li><a href=\"sogood.html\">A better online dictionary?</a>.</li>'
mens+='	<li><a href=\"why_dictionary.htm\">Why use a dictionary</a>.</li>'
mens+='</ul></li></ul>'
mens+='<ul><li><h3><a href=\"install.htm\">Install</a></h3><ul>'
mens+='	<li><a href=\"install.htm\">Install on your Browser</a>.</li>'
mens+='</ul></li></ul>'
mens+='<ul><li><h3><a href=\"Alternative4.html\">Teachers</a></h3><ul>'
mens+='	<li><a href=\"Alternative4.html\">Schools and Intranets</a>.</li>'
mens+='	<li><a href=\"edlinks.html\">Educator Links</a>.</li>'
mens+='	<li><a href=\"hotpotatoes.html\">HotPotatoes article</a>.</li>'
mens+='	<li><a href=\"polysemy.htm\">Dictionary Exercise 1</a>.</li>'
mens+='	<li><a href=\"sale.htm\">Bargain Dictionaries, CDs</a>.</li>'
mens+='	<li><a href=\"wots.htm\">Word of the Second</a>.</li>'
mens+='</ul></li></ul>'
mens+='<ul><li><h3><a href=\"webmaster.htm\">Webmasters</a></h3><ul>'
mens+='	<li><a href=\"webmaster.htm\">Dictionary on your web site</a>.</li>'
mens+='	<li><a href=\"Alternative.html\"> Discreet version</a>.</li>'
mens+='	<li><a href=\"Alternative1.html\"> Smart Form version</a>.</li>'
mens+='	<li><a href=\"Alternative2.html\"> Simple version</a>.</li>'
mens+='	<li><a href=\"Alternative3.html\"> Combination version</a>.</li>'
mens+='	<li><a href=\"Links.html\">Webmaster Links</a>.</li>'
mens+='	<li><a href=\"linktous.htm\">Link to the online dictionary</a>.</li>'
mens+='</ul></li></ul>'
mens+='<ul><li><h3><a href=\"wireless.htm\">Mobile</a></h3><ul>'
mens+='	<li><a href=\"wireless.htm\">Wireless PDA, mobile/wap</a>.</li>'
mens+='</ul></li></ul>'
mens+='<ul><li><h3><a href=\"about.htm\">About</a></h3><ul>'
mens+='	<li><a href=\"about.htm\">About LookWAYup</a>.</li>'
mens+='	<li><a href=\"reviews.html\">Reviews of LookWAYup</a>.</li>'
mens+='	<li><a href=\"forum.htm\">Dictionaries Forum</a>.</li>'
mens+='	<li><a href=\"partners.htm\">Partnerships</a>.</li>'
mens+='	<li><a href=\"news.htm\">LookWAYup - News</a>.</li>'
mens+='	<li><a href=\"licensing.htm\">Licensing Terms</a>.</li>'
mens+='	<li><a href=\"specsheet.htm\">LookWAYup Specifications</a>.</li>'
mens+='</ul></li></ul>'
if(e) e.innerHTML=mens

var e=document.getElementById('look_text')
if(e) e.innerHTML='<br>Get the full version<br><a href="/lwu.exe/lwu/register?offer=web" rel="nofollow">Try it</a>&nbsp; <a href="/lwu.exe/lwu/complete?offer=web" id="reg">Buy it</a>'

exOK=false
}
}

/*
 * (c)2006 Jesse Skinner/Dean Edwards/Matthias Miller/John Resig
 * To use: addDOMLoadEvent(doSomethingFunction);
 */

addDOMLoadEvent = (function(){
	var load_events = [],
		load_timer,
		script,
		done,
		exec,
		old_onload,
		init = function () {
			done = true;
			clearInterval(load_timer);
			while (exec = load_events.shift())
				exec();
			if (script) script.onreadystatechange = '';
		};
	return function (func) {
		if (done) return func();
		if (!load_events[0]) {
			// for Mozilla/Opera9
			if (document.addEventListener)
				document.addEventListener("DOMContentLoaded", init, false);
			/*@cc_on @*/
			/*@if (@_win32)
				document.write("<script id=__ie_onload defer src=//0><\/scr"+"ipt>");
				script = document.getElementById("__ie_onload");
				script.onreadystatechange = function() {
					if (this.readyState == "complete")
						init(); // call the onload handler
				};
			/*@end @*/
			if (/WebKit/i.test(navigator.userAgent)) {
				load_timer = setInterval(function() {
					if (/loaded|complete/.test(document.readyState))
						init(); // call the onload handler
				}, 10);
			}
			old_onload = window.onload;
			window.onload = function() {
				init();
				if (old_onload) old_onload();
			};
		}

		load_events.push(func);
	}
})();
addDOMLoadEvent(menu)