function minHeight(){
	$('#page').height('auto');
    if ($('#all').height() < $(window).height()) {
        $('#page').height($(window).height()-$('#header').height()-$('#footer').height()-$('#menu').outerHeight()-parseInt($('#page').css('padding-top'))-parseInt($('#page').css('padding-bottom')));
    }
}

//$(function(){
//    $(window).resize(function(){
//        minHeight();
//    });
//    minHeight();
//});


$(function(){
	$(".toggle_button").click(function(event){
		$(this).toggleClass("closed").next(".toggle_text").toggle();
		return false;
	}).filter(".closed").next(".toggle_text").hide();
});

