$(document).ready(function() {

	$('a.emailempfehlung').fancybox({
				
		// iFabrik Optionen
		'centerOnScroll'    : true,
		'overlayColor'      : '#fff',//'#0081C7',
		'overlayOpacity'    : 0.8,
		'padding'           : 1,
		
		// Custom Optionen
		'showCloseButton'   : true,
		'hideOnOverlayClick': false,
		'titleShow'         : false,
		'autoDimensions'    : true,
		
		// Ajax Optionen
		'type'              : 'ajax',
		'href'              : '/article_versenden_afa.php',
		'ajax'              : {
			type: "POST",
			data: {
				url: window.location.href
			}
		},
		
		'onComplete'        : function() {
			// Formular checken
			$.fp_fancyboxFormSubmit();
		}
	});

});
