$(document).ready(function() {

			
			$("ul#mainNav li").hover(function () {
   $(this).stop().animate({
    width: '160'
  }, 400, function() {
	
  });
  }, 
  function () {
  $(this).stop().animate({ 
					width: '130'
					},200);
  }
);
			
			
			$("a#logo").click(function(e){
				e.preventDefault();
				jQuery.scrollTo.window().queue([]).stop(); 
				$.scrollTo('0%', 800);
			});
			
		
			var scrollOffset = -220;
			$("ul#mainNav li:nth-child(1) a").click(function(e){
			
					e.preventDefault();
					
					jQuery.scrollTo.window().queue([]).stop(); 
					$.scrollTo( '#letsplayanchor', 800, {offset: scrollOffset});
				
					});
			
			
			
			$("ul#mainNav li:nth-child(2) a").click(function(e){
				e.preventDefault();
				jQuery.scrollTo.window().queue([]).stop(); 
				$.scrollTo( '#whatdoidoanchor', 800, {offset: scrollOffset});
					});
			
			$("ul#mainNav li:nth-child(3) a").click(function(e){
				e.preventDefault();
					jQuery.scrollTo.window().queue([]).stop(); 
					$.scrollTo( '#howitworksanchor', 800, {offset: scrollOffset});
					});
			
			$("ul#mainNav li::nth-child(4) a").click(function(e){
				e.preventDefault();
					jQuery.scrollTo.window().queue([]).stop(); 
					$.scrollTo( '#getintouchanchor', 800, {offset: scrollOffset})
					});
			

			
			$("ul#mainNav li").click(function(){
				theColours = new Array("#fcd708", "#ed530f", "#c40905", '#f70c91', '#b805c3', '#2924fb', "#0b3281", "#1dae05", "#9cd405", "#2b282b");
				whichColour = Math.floor(Math.random()*theColours.length);
				var bgColour = theColours[whichColour];
				$("a#logo").stop().animate({backgroundColor: bgColour}, 1000);
			});
											       	
	 });



