
window.addEvent('domready', function () {
	$$('input').forEach(function(input) {
		input.addClass(input.get('type'));
	});

	$$('ul.menu li.menu').addEvent('mouseover', function() {
		this.addClass('hover');
	});

	$$('li.menu').addEvent('mouseleave', function() {
		this.removeClass('hover');
    });

    $$('ul.subMenu  li.subMenu').addEvent('mouseover', function() {
        this.addClass('hover');
    });

    $$('li.subMenu').addEvent('mouseleave', function() {
       this.removeClass('hover');
    });

	/*$$('ul.menu ul').each(function(ul) {
		if (ul.getChildren().length == 0) ul.destroy();
	});*/
});

