﻿
$(document).ready(function () {


    $("#FooterToolbar").show();

    //Smooth Animation hack of ShortcutHelptext
    theHeight = $("#ShortcutHelptext").height();
    $("#ShortcutHelptext").hide();
    $('#toggleShortcutHelp').click(function () {

        $("#ShortcutHelptext").css({ height: theHeight });

        $("#ShortcutHelptext").slideToggle("slow");
    });

});

function DefaultTextFocus(txtElem, strDefaultText) {
    if (txtElem.value == strDefaultText) txtElem.value = '';
}

function DefaultTextBlur(txtElem, strDefaultText) {
    if (txtElem.value == '') txtElem.value = strDefaultText;
}



