// マガジンレイアウトjQuery(function(){	jQuery('.wrap').masonry({	itemSelector: '.box'	});});// a要素を内包する親要素をクリッカブルにするjQuery(function(){	jQuery(".Clickable").click(function(){	window.location=jQuery(this).find("a").attr("href");	return false;	});});
