function showInfos(lightbox, clickObject, closeBtn) {
    var lightbox = jQuery(lightbox);
    var lightboxHeight = jQuery(window).height() - 150;
    var lightboxLeft = (jQuery(window).width() - 600)/2;
    var toggleRecommendDialog = function(close) {
        if (close || lightbox.is(':visible')) {
            lightbox.fadeOut(200);
        } else {
            lightbox.fadeIn(200);
        }
    };

    jQuery(clickObject).bind('click', function() {
        jQuery('body').prepend(lightbox);
        jQuery('.lightboxContent').css({'left': lightboxLeft});
        jQuery('.lightboxBody').css({'max-height': lightboxHeight});
        toggleRecommendDialog();
    });

    (jQuery(closeBtn) && jQuery(lightbox)).bind('click', function() {
        toggleRecommendDialog(true);
    });

}

jQuery(document).ready(function() {
    /* Tiefstpreisgarantie */
    showInfos('#lightboxPriceGuarantee', '.badgePriceGuarantee', '.btnClose');
    /* Tiefstpreisgarantie LP Kfz30 Multisplit */
    showInfos('#lightboxPriceGuarantee', '.badgePriceGuaranteeBlack', '.btnClose');
});


