$(document).ready(function()
{
	//Popup als er meerdere producten zijn
	$(".handboeknieuw").fancybox({
		 'overlayColor'              : '#000000',
         'overlayOpacity'            : 0.8,
         'showCloseButton'          : false,
         'hideOnContentClick'		: false,
         'autoDimensions'	        : false,
         'centerOnScroll'           : true,
         'padding'                 : 20,
         'width'					: 330,
         'height'	        		: 310,
         'type'						: 'iframe',
			'scrolling'				: 'no'
	});

	$('h2.grouptitle').bind('click', function()
	{
		$( 'img#' + $(this).attr('name') ).trigger('click');
	});

	$('.product-open-close').toggle( function()
	{
		$('#'+this.id+'div').slideDown( 500 );
		$(this).attr('src', 'images/close.gif');
	},
	function()
	{
		$('#'+this.id+'div').slideUp( 500 );
		$(this).attr('src', 'images/open.gif');
	});

});
