﻿$(document).ready(function () {
    // Login box
    $("#dialog-popup").dialog({
        bgiframe: true,
        autoOpen: false,
        closeOnEscape: true,
        width: 230,
        modal: true,
        buttons: {
            'Sign Up': function() {
                $(location).attr('href', '/iCAT/Free-Trial/');
                $(this).dialog('close');
            },
            'Cancel': function() {
                $(this).dialog('close');
            }
        }
    });

    // Open logon box
    $(".iCAT-signin").click(function() {
        $('#dialog-popup').dialog('open');
        return false;
    });

    // Initialise date pickers
    $(".cdate").datepicker({
        changeMonth: true,
        changeYear: true,
        dateFormat: 'dd/mm/yy',
        showOn: 'both',
        buttonImage: 'http://icat.carbonlowemissions.co.uk/business/images/jquery/jqueryUI/ui-calendar.gif',
        buttonImageOnly: true
    });
});
