jQuery(document).ready(function() {
	jQuery("#visuals").cycle({
		fx: "fade",
		speed: 2500,
		timeout: 5000
	});
	
	jQuery("a.filmpje").click(function() {
		jQuery.fancybox({
			"padding"		: 0,
			"autoScale"		: false,
			"transitionIn"	: "none",
			"transitionOut"	: "none",
			"title"			: this.title,
			"width"			: 680,
			"height"		: 495,
			"href"			: this.href.replace(new RegExp("watch\\?v=", "i"), "v/") + "&autoplay=1",
			"type"			: "swf",
			"swf"			: { "allowfullscreen" : "true", "wmode" : "transparent" }
		});
		return false;
	}); 
});
