$(document).ready(function(){
 $('a.scroll').click(function(){
  $('html, body').animate({ 
                 scrollTop: $($(this).attr("href"))
                 .offset().top }, 900);
   return false;
 });
});
$(document).ready(function(){
 $(".lightbox").lightbox();
});