window.addEvent('domready', function() {


// OnLoad
var list = $$('#anim ul li a span.hover');
list.each(function(element) {
var loading = new Fx.Styles(element, {duration:0, wait:false}); //Amend the duration value
loading.start({'opacity': 0.01});// Amend the opacity value

// OnMouseOver
var fx = new Fx.Styles(element, {duration:700, wait:false});//Amend the duration value
element.addEvent('mouseenter', function(){
fx.start({'opacity': 0.8});// Amend the opacity value
 });

// OnMouseOut
var fx = new Fx.Styles(element, {duration:200, wait:false});//Amend the duration value
element.addEvent('mouseleave', function(){
 fx.start({'opacity': 0.01});// Amend the opacity value
 });
 });

});