﻿$(document).ready(function() {
    calcHeight();
	$("#breadcrumbs ul li:last").addClass("active");
});

function calcHeight() {
    var minHeight = 762;
    var offsetContent = $("#content").offset().top;
    var heightContent = $("#content").height();
    var footerHeight = $("#footer").height();
    var containerHeight = offsetContent + heightContent + footerHeight;
    if (minHeight < containerHeight) {
        $(".container").height(containerHeight);
    }
    else {
        $(".container").height(minHeight);
    }
}