window.onload = function() {
	if (typeof(localInit) == 'function') localInit();
	//applyMenu();
}

function applyMenu() {
	var meniu = document.getElementById('meniu')
	var arr = meniu.getElementsByTagName('ul')
	for (var i=0; i<arr.length; i++) {
		//arr[i].style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/menu_round_left.png')";
		var li = arr[i].parentNode
		li.submenu = arr[i]
		li.onmouseover = function () {
			this.submenu.style.display = 'block'
			this.hover = true}
		li.onmouseout = function () {
			var t = this
			t.hover = false
			setTimeout(function(){if (!t.hover) t.submenu.style.display = 'none'},100)
		}
	}
}

function embed (container, path, width, height, vars) {
	var flash = document.getElementById(container)
	if (flash) flash.innerHTML='<object type="application/x-shockwave-flash" id="flash" data="'+path+'" width="'+width+'" height="'+height+'"><param name="allowScriptAccess" value="always" /><param name="movie" value="'+path+'" /><param name="wmode" value="transparent" /><param name="FlashVars" value="'+vars+'" /></object>';}