$(document).ready(function(){
  
  $("ul#nav a").click(function(){
    var list = $("ul#work");
    var position = $(this).text() - 1;
    var distance = "-" + position * 670 + "px";
    list.animate({
      left : distance
    }, 1000);
    $("li.current").removeClass("current");
    $(this).closest("li").addClass("current");
  });
  
  $('a.external').click(function(e){
    open($(this).attr("href"));
    e.preventDefault();
  });
  
});
