$(document).ready(function() {
  
  $('#content a').aToolTip({ 'fixed' : true });
  
  $('.project-list a').lightBox();
  
  $('#content').animate({'left' : '0px'},400);
  
  $('nav a').click(function() {
      var cur = $(this);
      if(window.location.href.indexOf(cur.attr('href')) < 1)
        $('#content').animate({'left' : '2000px'},400,function(){
          window.location = cur.attr('href');  
        });
      return false;
  });
  
});
