$(document).ready(function()
    {
    var a = "&#110;&#97;&#109;&#101;";
    var b = "&#100;&#111;&#109;&#97;&#105;&#110;";
    var c = "&#116;&#108;&#100;";
    var d = 'Email - ';
    d += '<a href="' + '&#109;&#97;' + '&#105;&#108;' + '&#116;&#111;&#58;' + a;
    d += '&#64;' + b + '.' + c;
    d += '">' + a + '&#64;' + b + '.' + c + '<' + '/a>';
    $('.contactLink').html(d);

// bind form using ajaxForm
    $('#subscribeForm').ajaxForm({
        // dataType identifies the expected content type of the server response
        dataType:  'json',
        url:       '/ajax_newsletter_subscribe.php',
        beforeSubmit:  showLoading,
        success:   processJson
    });
    

    function processJson(data) 
    {
    $('#subscribeMessage').html(data.message);
    }

    function showLoading()
    {
    $('#subscribeMessage').html('<img id="progressGraphic" src="/images/processing.gif">');   
    }



    })
