$(document).ready(function() {

	$("a.lightbox").fancybox();
	$(".trigger").tooltip();
	$("#rotator").jshowoff({
		autoPlay: true,
		controls: false,
		effect: 'fade',
		hoverPause: true,
		links: true,
		speed: 3000
	}); 
	var height = $(window).height();
	var width = $(window).width();
	$("a#brochure").fancybox({
		'width': width,
		'height': height,
		'overlayShow': true,
		'hideOnContentClick': false,
		'type': 'iframe'
	});
	$("a#brochure").trigger('click');
	
	$("a#catalogus").fancybox({
		'width': width,
		'height': height,
		'overlayShow': true,
		'hideOnContentClick': false,
		'type': 'iframe'
	});
	$("a#catalogus").trigger('click');
	
});

