/* Minification failed. Returning unminified contents.
(1,1): run-time error CSS1019: Unexpected token, found '$'
(1,2): run-time error CSS1019: Unexpected token, found '('
(1,11): run-time error CSS1031: Expected selector, found ')'
(1,11): run-time error CSS1025: Expected comma or open brace, found ')'
(17,2): run-time error CSS1019: Unexpected token, found ')'
 */
$(document).ready(function () {
    var isSet = true;    
    $('#UserLoginForm').submit(function (event) {
        if (isSet) {
            event.preventDefault();
            isSet = false;
            $('#UserLoginForm').submit();
        }
        var vToday = new Date();
        var vDateToday = (vToday.getMonth() + 1) + '/' + vToday.getDate() + '/' + vToday.getFullYear();
        var vTimeNow = vToday.getHours() + ":" + vToday.getMinutes() + ":" + vToday.getSeconds();
        var vTimeZone = vToday.getTimezoneOffset();
        $('#cDate').val(vDateToday);
        $('#cTime').val(vTimeNow);
        $('#cTimeZone').val(vTimeZone);        
    });
});
