﻿
$(document).ready(function () {
    $("#formathiddenButtons1").hide();
    $("#formathiddenButtons2").hide();

    $("#no1").hoverIntent({
        over: makeTall1,
        timeout: 500,
        out: makeShort1
    });

    $("#no2").hoverIntent({
        over: makeTall2,
        timeout: 500,
        out: makeShort2
    });


});
function makeTall1() { $(this).animate({ "height": 250 }, 200); $("#formathiddenButtons1").show(); }
function makeShort1() { $(this).animate({ "height": 220 }, 200); $("#formathiddenButtons1").hide(); }
function makeTall2() { $(this).animate({ "height": 250 }, 200); $("#formathiddenButtons2").show(); }
function makeShort2() { $(this).animate({ "height": 220 }, 200); $("#formathiddenButtons2").hide(); }

$(document).ready(function () {
    $('#NewsletterButton').click(function () {
        $(this).toggleClass("active").next().slideToggle("slow");
        return false; //Prevent the browser jump to the link anchor
    });
    $('#CloseNewsletter').click(function () {
        $('#toggle').toggleClass("active").next().slideToggle("slow");
        return false; //Prevent the browser jump to the link anchor
    });
});

