function Menu(menu) {

	this.name=menu;

	this.resetTimer=function() { 		// cancel delayed closing
		if(this.tm) clearTimeout(this.tm)
		} 

	this.show=function() {
		if(!this.m1 || !this.m2) {
			this.m1 = layer("a" + this.name)
			this.m2 = layer("m" + this.name)
			}

		this.resetTimer()

		this.m2.moveTo( this.m1.getLeft() - 7,  this.m1.getTop() + this.m1.getHeight() + 3 ) // move second menu relatively
		this.m2.show()
		}

	this.setTimer=function() {
		this.tm=setTimeout(this.name + ".hide()",400) // 0,4 second delay to close a menu
		}

	this.hide=function() {
		this.m2.hide()
		}
	}

oferta = new Menu('oferta');
katalog = new Menu('katalog');
cennik = new Menu('cennik');

function initMenu() { document.write(
"<div id=\"moferta\" style=\"position:absolute;visibility:hidden;\"><div class=\"cmenu\">"
+ "<div class=\"mentry\" onmouseover=\"oferta.resetTimer();\" onmouseout=\"oferta.setTimer();\""
+ "><a style=\"width:100%\" href=\"./o_kamien_ogrodowy.html\">kamie&#324; ogrodowy</a></div>"
+ "<div class=\"mhrule\"><img src=\"images/spacer.gif\" height=\"1\" width=\"170\"></div>"
+ "<div class=\"mentry\" onmouseover=\"oferta.resetTimer();\" onmouseout=\"oferta.setTimer();\""
+ "><a style=\"width:100%\" href=\"./o_kruszywa.html\">kruszywa</a></div>"
+ "<div class=\"mhrule\"><img src=\"images/spacer.gif\" height=\"1\" width=\"170\"></div>"
+ "<div class=\"mentry\" onmouseover=\"oferta.resetTimer();\" onmouseout=\"oferta.setTimer();\""
+ "><a style=\"width:100%\" href=\"./o_wyroby_z_kamienia.html\">wyroby z&nbsp;kamienia</a></div>"
+ "<div class=\"mhrule\"><img src=\"images/spacer.gif\" height=\"1\" width=\"170\"></div>"
+ "<div class=\"mentry\" onmouseover=\"oferta.resetTimer();\" onmouseout=\"oferta.setTimer();\""
+ "><a style=\"width:100%\" href=\"./o_akwarystyka.html\">pod&#322;o&#380;a i&nbsp;kamienie <br>do akwari&oacute;w i&nbsp;terrari&oacute;w</a></div>"
+ "<div class=\"mhrule\"><img src=\"images/spacer.gif\" height=\"1\" width=\"170\"></div>"
+ "<div class=\"mentry\" onmouseover=\"oferta.resetTimer();\" onmouseout=\"oferta.setTimer();\""
+ "><a style=\"width:100%\" href=\"./o_uslugi.html\">us&#322;ugi</a></div>"
+ "</div></div>"
+ "<div id=\"mkatalog\" style=\"position:absolute;visibility:hidden;\"><div class=\"cmenu\">"
+ "<div class=\"mentry\" onmouseover=\"katalog.resetTimer(); return true\" onmouseout=\"katalog.setTimer(); return true\""
+ "><a style=\"width:100%\" href=\"./k_kamien_ogrodowy.html\">kamie&#324; ogrodowy</a></div>"
+ "<div class=\"mhrule\"><img src=\"images/spacer.gif\" height=\"1\" width=\"170\"></div>"
+ "<div class=\"mentry\" onmouseover=\"katalog.resetTimer(); return true\" onmouseout=\"katalog.setTimer(); return true\""
+ "><a style=\"width:100%\" href=\"./k_kruszywa.html\">kruszywa</a></div>"
+ "<div class=\"mhrule\"><img src=\"images/spacer.gif\" height=\"1\" width=\"170\"></div>"
+ "<div class=\"mentry\" onmouseover=\"katalog.resetTimer(); return true\" onmouseout=\"katalog.setTimer(); return true\""
+ "><a style=\"width:100%\" href=\"./k_wyroby_z_kamienia.html\">wyroby z&nbsp;kamienia</a></div>"
+ "<div class=\"mhrule\"><img src=\"images/spacer.gif\" height=\"1\" width=\"170\"></div>"
+ "<div class=\"mentry\" onmouseover=\"katalog.resetTimer(); return true\" onmouseout=\"katalog.setTimer(); return true\""
+ "><a style=\"width:100%\" href=\"./k_akwarystyka.html\">pod&#322;o&#380;a i&nbsp;kamienie <br>do akwari&oacute;w i terrari&oacute;w</a></div>"
+ "</div>"

+ "</div>"
+ "<div id=\"mcennik\" style=\"position:absolute;visibility:hidden;\"><div class=\"cmenu\">"
+ "<div class=\"mentry\" onmouseover=\"cennik.resetTimer(); return true\" onmouseout=\"cennik.setTimer(); return true\""
+ "><a style=\"width:100%\" href=\"./c_kamien_ogrodowy.html\">kamie&#324; ogrodowy</a></div>"

+ "<div class=\"mhrule\"><img src=\"images/spacer.gif\" height=\"1\" width=\"170\"></div>"
+ "<div class=\"mentry\" onmouseover=\"cennik.resetTimer(); return true\" onmouseout=\"cennik.setTimer(); return true\""
+ "><a style=\"width:100%\" href=\"./c_kruszywa_wyroby.html\">kruszywa i wyroby z kamienia</a></div>"

+ "<div class=\"mhrule\"><img src=\"images/spacer.gif\" height=\"1\" width=\"170\"></div>"
+ "<div class=\"mentry\" onmouseover=\"cennik.resetTimer(); return true\" onmouseout=\"cennik.setTimer(); return true\""
+ "><a style=\"width:100%\" href=\"./c_kruszywa_mas.html\">kruszywa</a></div>"

+ "<div class=\"mhrule\"><img src=\"images/spacer.gif\" height=\"1\" width=\"170\"></div>"
+ "<div class=\"mentry\" onmouseover=\"cennik.resetTimer(); return true\" onmouseout=\"cennik.setTimer(); return true\""
+ "><a style=\"width:100%\" href=\"./c_akwarystyka.html\">pod&#322;o&#380;a i kamienie <br/>do akwari&oacute;w i terrari&oacute;w</a></div>"
+ "</div></div>") }

