// Kleinoostenrijk javascript document

$j(document).ready(function(){
	
	<!-- Easyslider -->
	$j("#slider").easySlider({
		auto: true,
		speed: 1500,
		continuous: true,
		numeric: false
	});
	
	<!-- Fancybox it with the .various class -->
	$j(".various").fancybox({
		maxWidth	: 800,
		maxHeight	: 600,
		fitToView	: true,
		width		: '70%',
		height		: '70%',
		autoSize	: true,
		closeClick	: false,
		openEffect	: 'fade',
		openSpeed 	: 500,
		closeEffect	: 'fade',
		closeSpeed 	: 500
	});
	
	<!-- Let's use fancybox also for Youtube video's... because we can! -->
	$j(".youtube").click(function() {
		$j.fancybox({
			'padding'			: 0,
			'autoScale'			: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'titleShow'			: false,
			'width'				: 640,
			'height'			: 385,
			'href'				: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'				: 'swf',
			'swf'				: {
			'wmode'				: 'transparent',
			'allowfullscreen'	: 'true'
			} });
			return false;
		});
	
});
