// This is the default Blueprint javascript lib for this site.

function initPage() {
  initMasonry();
  if (typeof window.location.hash == "string" && window.location.hash) {
    var klass = window.location.hash.replace(/^#/, '');
    setTagClass(klass);
  }
  // $("#tagNav a").click(clickTagNav);
}


function initMasonry() {
  $('#folio').masonry(
		{ singleMode: true, itemSelector: '.box', animate: true }
	);
}

$(window).bind('load', initPage);

