$(document).ready(function() {
	$("#stage").each(function() {
		if ($(this).height() < 225) {
			$(this).height(225);
		}
	});
});

