jQuery(window).load( function() {
	// depends on jquery.masonry plugin!
	jQuery('#main .box').each( function(){
		//alert(jQuery(this).name);
		jQuery(this).masonry();
	});	
	//
	var destination = jQuery( document.location.hash ).offset().top;
	jQuery("html:not(:animated),body:not(:animated)").scrollTop( destination );
	//
});