/* -----------------------------------------------------------------------
	Custom JS Functions
----------------------------------------------------------------------- */

// Assigns #body_middle height based on browser window size for short pages
function resizeFrame() {
    var h = $(window).height();
    var w = $(window).width();
	var h_body_inside = $("#body_inside").height();
	if(h_body_inside < h) {
    $("#body_inside").css('height', h-245);
	}
}