// Main JS interfaces

$(document).ready(function(){
    $('.content').animate({
        left: "80px"
      }, 300, "swing", function(){
          $(this).animate({
            left: 0
          }, 150, "swing", function(){
              $(this).fadeTo("slow", 0.9)
          });
      });

});

