// JavaScript Documentwindow.addEvent('domready', function() {	// HERE IS WHAT YOU READ IN JS CODE	var list = $$('#idList li');list.each(function(element) { 	var fx = new Fx.Styles(element, {duration:200, wait:false}); 	element.addEvent('mouseenter', function(){		fx.start({			'margin-left': 15,			'background-color': '#406AB3',			'color': '#406AB3'		});	}); 	element.addEvent('mouseleave', function(){		fx.start({			'margin-left': 0,			'background-color': '#406AB3',			'color': '#406AB3'		});	}); });});