jQuery(document).ready(function(){

	jQuery(".doordb-link").fancybox({
		'titlePosition'		: 'inside',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'width'				: 750,
		'height'			: 520,
		'autoDimensions'	: true,
		'overlayOpacity'	: '0.5',
		'overlayColor'		: '#000',
		'titleShow'			: false,
		'showNavArrows' 	: true,
		'easingIn'			: 'swing',
		'easingOut'			: 'swing',
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic'
	});
	
	jQuery('.leaflet').click(function() {
		var toadd = jQuery(this).attr('id').replace('add','');
		jQuery.get('/index.php', { type: "801", artnr: toadd },
			function(data){
			//jQuery('#leaflet').html(data);
			//jQuery('#leaflet').append('<div class="deleteleaflet">Merkzettel l&ouml;schen</div>');
		});
	});
	
	jQuery('.deleteleaflet').click(function() {
		jQuery.get('/index.php', { type: "802" } );
		//jQuery('#leaflet').append('<div class="deleteleaflet">Merkzettel l&ouml;schen</div>');
	});
	
	jQuery.get('/index.php', { type: "803" },
		function(data){
		//jQuery('#leaflet').html(data);
		//jQuery('#leaflet').append('<div class="deleteleaflet">Merkzettel l&ouml;schen</div>');
	});

});
