/*
-------------------------------------------------------------------------------------------------
	[common.js] JavaScript
-------------------------------------------------------------------------------------------------
	copyright          : Lampros co.,Ltd.
	author             : Atsushi Umehara
	making day         : 2010-06-23
*/


/* ================================================

common

=================================================*/

jQuery(function($) {
	
	$("#bodyInner").css("position","relative");
	setHeight();
	$(window).resize(function(){
			setHeight();
	});
	function setHeight(){
		var nowHeight = document.documentElement.clientHeight;
		$("#bodyInner").css("height",nowHeight + "px");
	}
	
});


