$(document).ready(function(){

var $container = $('#photos');

$container.imagesLoaded( function(){
  $container.masonry({
    itemSelector : '.box' 
  });
  
   $('.gallery').animate({
   'opacity':1
   }); 
  
});

$('.wrapper').imagesLoaded( function(){
var imageWidth = $('img.attachment').width();
$('.entry-caption p').css('width',imageWidth);
});

$(window).resize(function(){

 $container.masonry({
    itemSelector : '.box' 
  });


})

});
