window.addEvent('domready' , function(){
	$each($$('.hoverable') , function(ele){
		ele.addEvent('mouseover' , function(){
			this.addClass('hover');									
		});	
		ele.addEvent('mouseout' , function(){
			this.removeClass('hover');									
		});
	});	
	
	$each($$('.selected') , function(ele){
		ele.addClass('hover');	
		this.addClass('selected');
		ele.removeEvents('mouseout');
		ele.addEvent('click' , function(e){
			e.stop();	 							
		});
	});

	
});
