$(document).ready(function(){
	myLightbox();
});


function myLightbox()
{

    $("html, body").append("<div id='lightbox'></div><div id='container'><a href='#' id='close'>Fenster schließen!</a><a href='http://www.sbv-sparen.de' target='_blank'><img src='festzins_spar_web.png' alt='' width='500' height='549' /></a></div>");
    $("#lightbox").fadeTo(850, 0.85);
    $("#container").fadeTo(850, 1);
    $("#close").click(function(){
        $("#lightbox").remove();
        $("#container").remove();
    });
    $("#lightbox").click(function(){
        $("#lightbox").remove();
        $("#container").remove();
    });
}
