﻿$(document).ready(function() {
    $("#submitCalculation").trigger('click');
});

function handleError() {
    $('#response').html("<div class='errorMessage'>Unfortunately, a calculation error has ocurred.<br /> Please try again or contact your account manager.</div>");
    $('#response').show();
    $('#detailsFooter').hide();
}

function ajaxSuccess() {
    $("#response").show(); 
    updateFooter();
    reRenderGraph();
}

function updateFooter() {
    if($('#costToUserKey').html() == TOTAL_DIFFERENCE_STRING) {
        $('#footerSavingAmount').html($('#costToUserValue').html());
        $('#detailsFooter').show();
    } else {
        $('#detailsFooter').hide();
    }
}

function reRenderGraph()
{
    $('#savingsGraph').attr('src', $('input#graphSrc').val());
}