$(document).ready(function() {
	$(".stratenplan").fancybox({
		'width'				: '60%',
		'height'			: '60%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	$(".GalleryImg").fancybox();
	var Hoogte = $(window).height()-20;
	$("#border").height(Hoogte);
	var Breedte = $(window).width()-20;
	$("#border").width(Breedte);
	// menu effect
	$("#menu ul").css("left",-$(this).width());
	$("#menu p").click(function() {
		var $lefty = $(this).next();
		$lefty.animate({
		  left: parseInt($lefty.css('left'),10) == 0 ?
			-$lefty.outerWidth() :
			0
		});
		$("#page-wrap").fadeToggle();
		setTimeout(function(){
			$("#menu p small").fadeToggle();
		}, 500);
	});
	$("#menu p").append("<small>&raquo;</small>");
	/*
	setTimeout(function () {
		$("#menu p").trigger("click").append("<small>click here</small>");
	}, 2500);
	*/
	//$("#background").animate({width: '100%'}).delay(500).fadeOut().animate({width: '0%'}).show();
	$("#page-wrap").delay(500).fadeToggle();
});
$(window).resize(function() {
	var Hoogte = $(window).height()-20;
	$("#border").height(Hoogte);
	var Breedte = $(window).width()-20;
	$("#border").width(Breedte);
});
