$(function()
  {
  $('.cx-fancybox-bild').fancybox(
    {
	'onStart'         : function()
	  {
	  $('html').addClass('cx-no-scrolling-2');
	  },
	'onClosed'        : function()
	  {
	  $('html').removeClass('cx-no-scrolling-2');
	  }
	});


  $('.cx-fancybox-iframe').fancybox(
    {
    'autoDimensions'  : true,
	'type'            : 'iframe',
	'width'           : parseInt($(window).width()*0.9),
	'height'          : parseInt($(window).height()*0.9)
	});


  $('.cx-fancybox-produkt').fancybox(
	{
    'autoDimensions'  : false,
	'width'           : 520,
	'height'          : 520,
    'autoScale'       : true,
	'overlayOpacity'  : 0.7,
	'titleShow'		  : true,
	'titlePosition'   : 'inside',
	'overlayColor'	  : '#000',
	'type'				: 'iframe',
	'onStart'         : function()
	  {
	  $('html').addClass('cx-no-scrolling-2');
	  },
	'onClosed'        : function()
	  {
	  $('html').removeClass('cx-no-scrolling-2');
	  }
	});
  });
