$(document).ready(function() {	
	//頁面（#content）高度小於450px時，將其高度設定為450px
	if ($("#content").height() < 450 ) {$("#content").height(450); }
		
});