jQuery(document).ready(function () {
    $('#container').masonry({
      itemSelector: '.box',
	  columnWidth:198,
      isAnimated: true
    });
    
  });
function masonry_update(){
    $('#container').masonry({
      itemSelector: '.box',
	  columnWidth:198,
      isAnimated: true
    });
};
$(function(){
	$('.box a img.simg').hover(
		function(){
			$(this).stop().animate({
			},masonry_update);
		},
		function(){
			if (!$(this).hasClass('currentPage')) {
			$(this).stop().animate({
			},masonry_update);
        }
   });
})

