jQuery(document).ready(function($){
				
				jQuery("a[rel~='colorbox']").colorbox({
					innerWidth: function(){
    						match = $(this).attr('rel').match(/cBoxWidth(\d+)px/);
						if (match) {
							return RegExp.$1;
						} else {
							return $(this).attr('relwidth');
						}
    					},
    					innerHeight: function(){
    						match = $(this).attr('rel').match(/cBoxHeight(\d+)px/);
    						if (match) {
							return RegExp.$1;
						} else {
							return $(this).attr('relheight');
						}
					},
    					iframe:true,
					rel:'nofollow'
    			});
    				
				jQuery("#stage li.subscribe_to_newsletter .type_submit").colorbox({
					href: function(){
							var url = "https://mein.drklein.de/newsletter/drklein/start?&drklein&email=";
							var emailInput = $("li.subscribe_to_newsletter input.type_text").val();
							return url + emailInput;
					},
					innerWidth: 920,
    					innerHeight: 595,
    					iframe:true,
					rel:'nofollow'
    			});

});
