
window.addEvent('domready',function(){
									
									
									
	var btns = $$('#menu li.btn');
	
	//console.debug(btns);
	
	
	
	btns.each(function(button,index){
	
	
	
	button.addEvents({	
	//alert('clicked' + index);
	
	'mouseover' :function(){
	
	this.tween("background-color", "#EBECEE");

	},
	
	'mouseout' : function(){
	
	this.tween("background-color", "#FBFBFB");
	
	}
	}); // end events

	
	
	
	
	
	})// end for each
	
	
	}) ; // end domready



