// Script for menus [perlyna.km.ua]

var  menuFirst, menuSecond, ht;

function initMenu()
{
	menuFirst = document.getElementById('first');
	menuSecond = document.getElementById('second');
	
	pageBlock = document.getElementById('page');
	pageBlock.style.top = '100px';
	
	hideall();
	
	var aaa=menuFirst.getElementsByTagName('LI');
	
	menuFirst.onmouseover = function() { show(this); };
	menuFirst.onmouseout = function() { hideall(); };
	
	menuSecond.onmouseover = function() { show(this); };
	menuSecond.onmouseout = function() { hideall(); };
}

function show(el)
{
	el.getElementsByTagName('div')[0].className = 'show';
}

function hideall()
{
	menuFirst.getElementsByTagName('div')[0].className = 'hide';
	menuSecond.getElementsByTagName('div')[0].className = 'hide';
}

window.onload = initMenu;