window.addEvent('domready', function() {var footer = $$('#footer a');footer.each(function(element) { 	var fx = new Fx.Styles(element, {duration:300, wait:false}); 	element.addEvent('mouseenter', function(){		fx.start({color: '#be9253'});	}); 	element.addEvent('mouseleave', function(){		fx.start({'color': '#505050'});	}); });var actu = $$('#actu a');actu.each(function(element) { 	var fx2 = new Fx.Styles(element, {duration:300, wait:false}); 	element.addEvent('mouseenter', function(){		fx2.start({color: '#be9253'});	}); 	element.addEvent('mouseleave', function(){		fx2.start({'color': '#BBBBBB'});	}); });var tablecol = $$('.tablecol a');tablecol.each(function(element) { 	var fx3 = new Fx.Styles(element, {duration:300, wait:false}); 	element.addEvent('mouseenter', function(){		fx3.start({color: '#be9253'});	}); 	element.addEvent('mouseleave', function(){		fx3.start({'color': '#BBBBBB'});	}); });});