window.addEvent('domready', function(){
	$$('.itemMenu').addEvent('mouseover',function(){this.style.background='url(images/bgMenuh.jpg) repeat-y left';});
	$$('.itemMenu').addEvent('mouseout',function(){this.style.background='';});
	//$$('.itemMenu').addEvent('click',function(){window.location.href = this.getElement('a').href;});
	$$('.hasSub').addEvent('mouseover',function(){this.getElement('ul').style.display = 'block';});		
	$$('.hasSub').addEvent('mouseout',function(){this.getElement('ul').style.display = 'none';});
});