jQuery(window).load(
  function() {
  
  // executes when complete page is fully loaded, including all frames, objects and images

  // Fadein/Out
  jQuery(function(){ jQuery('#Loading').fadeOut('fast'); });
  jQuery(function(){ jQuery('#main').fadeIn('slow'); });
  jQuery(function(){ jQuery('#footer').fadeIn('slow'); });

  var $container = jQuery('#rightbox');

    $container.imagesLoaded(function(){
        
        $container.masonry({
          itemSelector : '.post',
          columnWidth : 360,
          isAnimated  : true 
        });

    });
});
