﻿
var collapseText = '<img src="/_resources/images/icons/arrow-up-icon.png" alt="Collapse more information" title="Collapse more information" />';
var expandText = '<img src="/_resources/images/icons/arrow-down-icon.png" alt="Expand more information" title="Expand more information" />';

$(document).ready(function () {
    //$('.caseOverview dl').hide(0);
    $('.expand').html(collapseText);
    $('.expand').toggle(function () {
        $(this).parents('.caseOverview').find('dl').slideUp();
        $(this).html(expandText);
    }, function () {
        $(this).parents('.caseOverview').find('dl').slideDown();
        $(this).html(collapseText);
    });

    $('.trigger').click(function () {
        if ($(this).parents('.slideOut').find('.slide').css('display') == 'none')
            $(this).parents('.slideOut').find('.slide').slideDown();
        else
            $(this).parents('.slideOut').find('.slide').slideUp();
    });
    $('.datePicker').datepicker();
});

function showPassword() {
    $('#passwordText').show(0);
    $('.passwordBox').hide(0);
}
function hidePassword() {
    $('#passwordText').hide(0);
    $('.passwordBox').show(0);
    $('.passwordBox').css('display', 'inline');
    $('.passwordBox').focus();
}
