﻿function pageLoad() {
    InitJQuery();
}

function InitJQuery() {
    jQuery('.MDTCalMod_ShowOne').hover(function() { jQuery(this).addClass("hilite"); }, function() { jQuery(this).removeClass("hilite"); });
    jQuery('.MDTCalMod_HideOne').hover(function() { jQuery(this).addClass("hilite"); }, function() { jQuery(this).removeClass("hilite"); });

    jQuery('.MDTCalMod_ShowOne').click(function() {
        jQuery(this).hide();
        jQuery(this).parent().children('.MDTCalMod_HideOne').show();
        jQuery(this).parent().parent().parent().children('.MDTCalMod_InfoExpandable').show('slow');
    });
    jQuery('.MDTCalMod_HideOne').click(function() {
        jQuery(this).hide();
        jQuery(this).parent().children('.MDTCalMod_ShowOne').show();
        jQuery(this).parent().parent().parent().children('.MDTCalMod_InfoExpandable').hide('slow');
    });

    jQuery('.MDTCalMod_HideOne').hide();
    jQuery('.MDTCalMod_InfoExpandable').hide();

}; 