$(function()
  {
  $('.cx-fancybox-bild').fancybox();
  
  /* ajax
  ----------------------------------------------------------------*/
  $('.cx-fancybox-ajax[fancybox-init!=1]').fancybox(
    {
	centerOnScroll													: true,
	ajax :
	  {
	  type															: 'GET'
	  }/*,
	titleFormat: function()
	  {
	  return '<div class="cx-button cx-button-weiter"><span>drucken</span></div>';
	  }*/
	});
  $('.cx-fancybox-ajax[fancybox-init!=1]').attr('fancybox-init','1');
  
  $('.cx-fancybox-iframe').fancybox(
    {
		'width'				: '90%',
		'height'			: '90%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	}
	);
  
  });
