$(document).ready(function(){
    if($('#popupbkg').length != 0)
    {
        $('#popupbkg').show();
        $('#popup_overlay').height($(document).height());
        $('#popup_overlay').show();
    }
    
    // Close popup
    $('#sluiten a').click(function(){
        
        $('#popupbkg').hide();
        $('#popup_overlay').hide();
    });
    
    $('#sluiten img').hover(function(){
        var src = $(this).attr('src').match(/[^\.]+/) + "2.jpg";
		$(this).attr('src', src);
    },
    function(){
        var src = $(this).attr("src").replace("2.jpg", ".jpg");
		$(this).attr("src", src);
    });
});