$(document).ready(function() {

  $('#more').fadeTo(500, 0.5);
  $('#more').hover(function(){
    $(this).fadeTo(500, 1); 
  },
  function() {
    $('#more').fadeTo(500, 1.0);
  });

  $("#more").click(function(){
    $.scrollTo('#about-us', 1500);
    $('#more-info').delay(1500).fadeIn();
    return false;
  });

  $('body').fadeOut(500 ,function(){
    $(this).fadeIn(2000, function() {
      var manager = new jsAnimManager();  
      shroom = document.getElementById("monkey");

      manager.registerPosition("monkey");

      shroom.setPosition(-480 + 37, -200 + 75);

      var anim = manager.createAnimObject("monkey");

      anim.add({property: Prop.positionSemicircle(false), 
        to: new Pos(480 + 37, -200 + 75), duration: 2000});
      });
  });
});

