$(document).ready(function(){

	//グリッドレイアウトのボックスの高さの統一
	$('.entrybox-inner-body').flatHeights();

});

//グリッドレイアウトのセッティング
if (! window.console) window.console = { log: function(){} }; //avoid error

$(function(){

	var vg = $("#entry").vgrid({
		easeing: "easeOutQuint",
		time: 800,
		delay: 60,
		selRefGrid: "#entry div.entrybox",
		selFitWidth: ["#contentsArea"],
		gridDefWidth: 298 + 15 + 15 + 5,
		forceAnim: 1	});

	$(window).load(function(e){
		setTimeout(function(){ 
			// prevent flicker in grid area - see also style.css
			$("#entry").css("paddingTop", "0px");
		}, 1000);
	});

});
