﻿/// <reference path="jquery-1.4.4.js" />
function init()
{ 

}

function calculate(request)
{
    var p = request;
    $("#calcButton").attr("disabled", "disabled");
    $("#result").hide("blind", null, 400);
    _gaq.push(['_trackPageview', '/calculated']);
    return true;
}

function displaydata(request)
{
    var p = request;
    $("#calcButton").removeAttr("disabled");
    $("#result").show("blind", null, 400);
}
$(document).ready(init);

