/**
 * @author pbereut
 */

 jQuery(document).ready(function(){
		//run masonry when page first loads
		jQuery('.wrap').masonry();
		//run masonry when window is resized
		jQuery(window).resize(function() {
		jQuery('.wrap').masonry();
	});
	var destination = jQuery( document.location.hash ).offset().top;
jQuery("html:not(:animated),body:not(:animated)").scrollTop( destination );
}) 
