﻿$(document).ready(function(){
    $('#currencyconverter').hide();
});

function ShowCurrencyConverter(initialAmount)
{
    $.post('/do_convert_currency.aspx', { from: 'GBP', to: 'USD', amount: initialAmount }, function(data){
        $('#currencyconverter').show();
        $('#currencyconverter').hide();
    });
}