TO_LOAD_INDEX++;
TO_LOAD[TO_LOAD_INDEX]='load_adme();';

function load_adme(){
	$(window).resize(resize);
	resize();
}

/**
 *
 * @access public
 * @return void
 **/
function resize(){
	$(".main-holder").css('height','1%');
	var h=$(document).height()-108-40-28-1;
	if($(".main-holder").height()<h){
		$(".main-holder").css('height',h);
	}else{
		$(".main-holder").css('height','1%');
	}
}
