
function initMenu(o) {
    var l = o.getElementsByTagName('li');
    for (var i = 0; i < l.length; i++) {
        l.item(i).className = 'out';
        l.item(i).onmouseover = function(p) { return function() { p.className = 'over'; }; } (l.item(i));
        l.item(i).onmouseout = function(p) { return function() { p.className = 'out'; }; } (l.item(i));
    }
}
// (C) Netlogic, 2003

window.onload = function() {
	ValidateForms();
	CreateBaloon();
	
	//initMenu(document.getElementById('menu'));
	//другие функции привязываемые к onload
}
