var $j = jQuery.noConflict();
$j(document).ready(function() {
	$j("#background").fullBg();
		$j('img[title], img[alt]').removeAttr('title').removeAttr('alt');
		
	});


$j(window).load(function() {
	$j('.posts, #entry').masonry({singleMode: true, animate: true, animationOptions: {complete: onComplete
    }});
	
	});
	
var onComplete = function() {
  if ( window.location.hash ) {
    var destination = $( window.location.hash ).offset().top;
    $window.scrollTop( destination );
  }
}

