
$(document).ready(function () {
    //===LIGHTBOX========================================================
    if ($('a.cb').length != 0) {
        $("a.cb").colorbox();
    }
    //===NAV=DD==================================================
    $(".cal").hide();
    $(".classes").hide();
    // $(".pro").hide();
    $('#LNKcal').click(function () {
        $("div.cal").toggle('fast');
        $(".classes").hide();
        $(".pro").hide();
        this.blur()
        return false;
    });
    $('#LNKclasses').click(
                 function () {
                     $("div.classes").toggle('fast');
                     $(".cal").hide();
                     $(".pro").hide();
                     this.blur()
                     return false;
                 });
    $('#LNKpro').click(
                 function () {
                     $("div.pro").toggle('fast');
                     $(".cal").hide();
                     $(".classes").hide();
                     this.blur()
                     return false;
                 });
    //==========================show/hide=boxes=========================================================
    // $('.contentMarg').hide();
    //$('.mainL div.contentMarg:first').show();
    $('.shead').click(function () {
        $(this).next().next().slideToggle('fast', 'swing');
    });
    //===watermark==============
    //$('.TBliU').watermark('User Name');
    //$('.TBliP').watermark('Password');
    //===SET=CONTENT=HEIGHT===============================================
    function hei() {
        var winH = $(window).height();  // viewport
        var docH = $('body').height(); // doc           
        if ($('.coltwo').length != 0) {
            if (winH > docH) {                //$('.coltwo').height($(window).height() - 140);
                $('.coltwo').css('min-height', $(window).height() - 140);
            }
        }
        if ($('.colthree').length != 0) {
            if (winH > docH) {                //$('.colthree').height($(window).height() - 140);
                $('.colthree').css('min-height', $(window).height() - 140);
            }
        }
        if ($('.coltwowide').length != 0) {
            if (winH > docH) {                //$('.coltwowide').height($(window).height() - 140);
                $('.coltwowide').css('min-height', $(window).height() - 140);
            }
        }
    } // hei 
    hei();
    $(window).resize(hei);
    //====MAIN=ACCORDIAN============================================
    $('.shead').hover(function () {
        $(this).css('background-color', '#78a3ef');
    }, function () {
        $(this).css('background-color', '#adc5ef');
    });
    //==SIDEBAR=ACCORDIAN===========================================
    $('.mainR .shead').hover(function () {
        $(this).css('background-color', '#d07704');
    }, function () {
        $(this).css('background-color', '#e78200');
    });




});           //.ready      
