$(document).ready(function() {
 $("#nav li").mouseover(function(){
      $(this).stop().animate({ 
        marginTop: '2px',
		queue: false
      }, 100 );
    });
 
  $("#nav li").mouseout(function(){
      $(this).stop().animate({ 
        marginTop: '0px',
		queue: false
      }, 100 );
    });
  
  // easter egg :)
		$("#realfooter").toggle(function(){
		$(this).animate({height:'200px'},{queue:false,duration:2500});
		$('html,body').animate({scrollTop:$('#realfooter').offset().top},{queue:false,duration:3000});
		}, function(){
		$('#realfooter').animate({height:'10px'},{queue:false,duration:3000});
});

	 });