/*
 * jcommon.js 1.14
 * Copyright (c) 2007 C.M.A. Co.,Ltd.
 *
 * Last Added: 2008-09-09
 *
 */

(function($){
	

})(jQuery);

$(function(){
		   
	$(window).load(function(){
		this.resize = function(){
			var height = $(window).height();
			if(height <= 635){
				$('html,body').height(635);
			}
			else{
				$('html,body').height('100%');
			}
		}
	}).resize(function(){
		this.resize();
	});
	
});
