jQuery(document).ready(function() {  
  
 spectrum();

 function spectrum(){  
    jQuery('li a body')
        .each(function(){
            var hue = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';              
            jQuery(this).animate( { backgroundColor: hue }, 5000, '', spectrum)
        });  
 }  
  
});
