/* Javascript for making the website scroll horizontally */

$(document).ready(function() {  
  $("#nav a").bind("click",function(event){  
    event.preventDefault();  
    var target = $(this).attr("href");  
    $("html, body").stop().animate({  
      scrollLeft: $(target).offset().left,  
      scrollTop: $(target).offset().top  
    }, 1200);  
  });  
});








