$(document).ready(function () {
    if ($(".firms_avail").size() > 0) {
        $("#footer").css({ "padding-top": 100 });
    }
    $(".img").each(function () {
        $(this).height($(this).siblings(".right").height());
    });
    $(".firm_sel").click(function () {
        $(".firm:not(#" + $(this).attr("ref") + ")").fadeOut("fast");
        $("#" + $(this).attr("ref")).fadeIn();
        return false;
    });
});
