$(document).ready(function() {
	$('body').css ('display' , 'block');
	$('h3').addClass("dontend");
	$("body.single .entry, body.search .entry, body.archive .entry, body.home .entry").columnize({width:300, columns:3, buildOnce:true, lastNeverTallest:true}).hide();
	$("body.single .entry").show();
	$("body.search h2.post-title a, body.archive h2.post-title a, body.home h2.post-title a").click(function(){
			$content = $(this).parent().siblings(".entry");
			if ($content.is(":hidden") && $content.hasClass(".toggle")) {
				$content.slideDown().columnize({width:300, columns:3, buildOnce:true, lastNeverTallest:true}).removeClass("toggle");
			} else if ($content.is(":hidden")) {
				$content.slideDown();		
			} else {
				$content.hide();
			}
			return false;
		});
});