//When the document is ready we need to initialize our global ajaxManager object
$(document).ready(function()
{
    //initialize the ajaxManager
    $.ajaxManager.initialise({
        responseType: $.ajaxManager.dataType.JSON,
        requestType: $.ajaxManager.requestType.POST,
        requestUrl: "/handlers/WorkflowAsyncHandler.ashx",
        debug: false
    });
});
