window.addEvent('domready', function(){

$$('ul li').addEvents({
	'mouseover': function(){
		this.addClass('hover');
		//alert("hello");
	},
	'mouseout': function(){
		this.removeClass('hover');
	}
});	

});
