    $(document).ready(function() {  
      
     spectrum();  
      
     function spectrum(){  
        var hue = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';  
        $('body').animate({ backgroundColor: "#35797a" }, 15000)
				.animate({ backgroundColor: "#557a35" }, 15000)
				.animate({ backgroundColor: "#35797a" }, 15000)
				.animate({ backgroundColor: "#35497a" }, 15000);  
        spectrum();  
     }  
      
    });  


