$().ready(function() {
    $("#kwick > .kwicks").kwicks({
        max: 380,
        spacing: 0,
        sticky: true
    });
    $("#main_Menu > ul.kwicks").kwicks({
        max: 200,
        spacing: 0
    });
    SetFooter();
    $(".scriptOn").css("visibility", "visible");
    $(".scriptOff").remove();
});

$(window).resize(function() {
SetFooter();
});

var SetFooter = function() {
    return;
//    var winHeight = $(window).height();
//    if (winHeight > 0) {
//        var ch = $("#content").height() + Math.max($("#crh").height(), $("#clh").height());
//        if ($("#scrollmask").height() > 0)
//            ch = $("#content").height() + Math.max($("#scrollmask").height(), $("#clh").height()) + 80;
//        var fh = $("#footer").height();
//        if ((winHeight - (20 + ch + fh)) >= 0) {
//            $("#footer").css("position", "absolute");
//            $("#footer").css("top", (winHeight - fh - 15) + "px");
//        }
//        else {
//            $("#footer").css("position", "absolute");
//            $("#footer").css("top", (20 + ch) + "px");
//        }
//    }
}


