$(function() {
    
  $('a#logo').click(function(e){
    e.preventDefault();
    $(window).scrollTo(0, {duration: 1000, axis : 'x' });
  });
    
  $('ul.gallery').each(function() {
    var gallery = $(this);
    var gallery_width = 0;
    gallery.find('img').each(function(){
      gallery_width += $(this).outerWidth() + 10;  
    });
    gallery
      .width(gallery_width)
      .find('img')
        .lazyload({
          effect      : "fadeIn",
          threshold   : 1000
        })
        .bind('contextmenu', function(e){
          e.preventDefault();
        })
          .filter('[title!=""]')
            .poshytip({
              className: 'tip-twitter',
              alignTo: 'target',
            	alignX: 'inner-right',
            	alignY: 'inner-top',
            	offsetX: 5,
            	offsetY: 5,
            	slide: false,
            	hideTimeout : 0
            });
  });
  
  
});

