$(document).ready(function() {

		//Set css in Firefox (Required to use the backgroundPosition js)
		$('#menu li a').css({backgroundPosition: '0px 0px'});

		//Animate the shutter
		$("#menu li a").hover(function(){
		      $(this).animate({backgroundPosition: '(0px 25px)'}, {duration: "slow",queue:false} );
		    }, function() {
		      $(this).animate({backgroundPosition: '(0px 0px)'}, {duration: "slow",queue:false} );
		});
		
		spectrum();  
  function spectrum(){  
     var hue = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';  
     	$('#hire').animate({ backgroundColor: hue },2000,'',spectrum);  
     //spectrum();  
  		}  
		
	 });