$(document).ready(function(){
    $('.datepicker').datepicker({
        dateFormat: 'yy-mm-dd',
        firstDay: 1,
        changeMonth: true,
        changeYear: true
    });

    $('div#LiveSupportLayer').dialog({
        autoOpen: false,
        resizable: false,
        height: 380,
        width: 920,
        modal: true,
        draggable: false,
        position: 'top',
        resizable: false
    });

    $('a#LifeSupportLink').click(function(event){
        $('div#LiveSupportLayer').dialog('open');
    });
});

