$(document).ready(function(){

	$('#slides').anythingSlider({
		// If true, builds a list of anchor links to link to each panel
	  width               : 614,      // Override the default CSS width
	  height              : 288,      // Override the default CSS height
	  resizeContents      : false,      // If true, solitary images/objects in the panel will expand to fit the viewport
	
	  // Navigation
	  startPanel          : 1,         // This sets the initial panel
	  hashTags            : true,      // Should links change the hashtag in the URL?
	  buildArrows         : false,      // If true, builds the forwards and backwards buttons
	  buildNavigation     : false      // If true, buildsa list of anchor links to link to each panel
	});
	
	// set up external links
	
	$("#HomePage").click(function(e){
    $('#slides').anythingSlider(1);
    e.preventDefault();
	});

	$("#PortfolioPage").click(function(e){
    $('#slides').anythingSlider(2);
    e.preventDefault();
	});

	$("#PrijzenPage").click(function(e){
    $('#slides').anythingSlider(3);
    e.preventDefault();
	});

	$("#ContactPage").click(function(e){
    $('#slides').anythingSlider(4);
    e.preventDefault();
	});

	$("#portfolio-mensen").fancybox({
		'width'				: '90%',
		'height'			: '90%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
	$("#portfolio-natuur").fancybox({
		'width'				: '90%',
		'height'			: '90%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
	$("#portfolio-diversen").fancybox({
		'width'				: '90%',
		'height'			: '90%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
});
