$(document).ready(function() 
{	
	//Loungedeck
	 $(".lichtkeuze-sfeer").fancybox({
            'overlayColor'              : '#000000',
            'overlayOpacity'            : 0.8,
            'showCloseButton'           : false,
            'hideOnContentClick'		: true,
            'type'						: 'image',
			'titlePosition' 			: 'inside',
			'titleFormat'				: formatTitle

    });
    
    $(".lichtkeuze-product").fancybox({
            'overlayColor'              : '#000000',
            'overlayOpacity'            : 0.8,
            'showCloseButton'           : false,
            'hideOnContentClick'		: false,
            'autoDimensions'	        : false,
            'centerOnScroll'            : true,
            'padding'                   : 10,
            'width'						: 430,
            'height'	        		: 490,
            'type'						: 'iframe',
			'scrolling'					: 'no'
    });
});

function formatTitle( title, currentArray, currentIndex, currentOpts ) {
    return '<div id="closeBox"><a href="javascript:;" onclick="$.fancybox.close();"><img src="images/lichtkeuze/close.gif" /></a></div>';
}


