﻿function toonDonatiePopup(aantalpersonen)
{
    tb_show(null, '/Doneer.aspx?aantalpersonen=' + aantalpersonen + '&KeepThis=true&TB_iframe=true&height=500&width=740', false);

}

function doDonatie()
{

    toonDonatiePopup(aantalGenezen);
}

var aantalGenezen = 0;

function saveAantalGenezen(nieuwaantal)
{
    aantalGenezen = nieuwaantal;
}

$(document).ready(function () {
    $(".linkedin").hover(
        function () {
            $(this).attr("src", "/images/icon_linkedin_on.jpg");
        },
        function () {
            $(this).attr("src", "/images/icon_linkedin.jpg");
        }
    );
    $(".twitter").hover(
        function () {
            $(this).attr("src", "/images/icon_twitter_on.jpg");
        },
        function () {
            $(this).attr("src", "/images/icon_twitter.jpg");
        }
    );
});
