window.addEvent('domready', function() {
	var list = $$('#sidemenu li');	
	list.each(function(element) {
		
		/* menu wobble */
		var fx = new Fx.Styles(element, {duration:100, wait:false});		
		element.addEvent('mouseenter', function(){
			fx.start({
				'marginLeft': 5,
				'color': '#286ea0'
			});
		}); 
		element.addEvent('mouseleave', function(){
			fx.start({
				'marginLeft': 0,
				'color': '#f9f9f9'
			});
		});
	});
	/*
	$$('img').each(function(img, i) {
		new ReMooz(img, {
					 source: img.href,
					 addClick: true
		 });		 		
	});
	ReMooz.initialize();
	*/	
});