﻿/* ********** jScroller Marquee ********** */

$(document).ready(function() {
    $("#marquee").marquee({ yScroll: "top" });
});

/* ********** PaneSwitch ********** */

$(document).ready(function() {

    // ##### Handling Panes
    var ControlPanel = $('#dnn_ControlPanel');

    var LeftPane = $('#dnn_LeftPane');
    var RightPane = $('#dnn_RightPane');
    var TopPane = $('#dnn_TopPane');
    var BottomPane = $('#dnn_BottomPane');

    var Main = $('#main');

    if (LeftPane.is(".DNNEmptyPane")) {
        Main.addClass("hidecol1");
        $('#col1').hide();
    }

    if (RightPane.is(".DNNEmptyPane")) {
        Main.addClass("hidecol2");
        $('#col2').hide();
    }

    if (LeftPane.is(".DNNEmptyPane") && RightPane.is(".DNNEmptyPane")) {
        Main.removeClass();
        Main.addClass("hideboth");
        $('#col1').hide();
        $('#col2').hide();
    }

    if (TopPane.is(".DNNEmptyPane")) $('#Top').hide();
    if (BottomPane.is(".DNNEmptyPane")) $('#Bottom').hide();


});
