$(document).ready(function(){
  
  $('.ie8 .hentry a,.ie7 .hentry a').hover(function () {
      $(this).find('div').stop().fadeTo('normal', .4);
      $(this).find('span').stop().fadeTo('normal', 1);
  }, function () {
      $(this).find('div').stop().fadeTo('normal', 0);
      $(this).find('span').stop().fadeTo('normal', 0);
  });
  
  $('a#top').click(function(){
  $.scrollTo( 0, 500);
  return false;
  });
  $('a#comments').click(function(){
  $.scrollTo( '#fbcomments', 500);
  return false;
  });

});

$(function(){
  var $container = $('.masonry-wrapper');
  $container.imagesLoaded(function(){
    $container.masonry({
      itemSelector : '.hentry',
      columnWidth : 300,
      gutterWidth : 20
      // isAnimated: true
    });
  });
});


