$(document).ready(function(){
  $.localScroll();
  /*$('.image').not(':first').each(function(){
    $(this).css('opacity',0);
    $(this).children('img').attr({'data-load': $(this).children('img').attr('src'), 'src':'images/loading.gif'});
  });
  $('.image').one('inview', function (event, visible) {
    if (visible == true) {
     $(this).animate({opacity:1},800);
     $(this).children('img').attr({'src': $(this).children('img').attr('data-load')});
    }
  });*/
});
