﻿$(document).ready(function () {
    if (window != window.top) {
        parent.location.href = parent.location.href;
    }

    var defaultRightHeight;
    var totalRightHeight;

    jsCols();

    $("#hidePanel").click(function () {
        $(".thinLink").removeClass("on");
        $("#inside").removeClass("open");
        $("#expandedPanel").hide("slide", { direction: "right" });

        $("#rightPanel .content").height(defaultRightHeight);
        return false;
    });

});

