
$(document).ready(function() {
						   
	//-- Homepage banner animatie --//
	
	$('#homeIntro')
	.cycle({
		pager: '.menu',
		timeout: 0,
		pagerEvent: 'mouseover',
		speed: 'slow',
		pauseOnPagerHover: true,
		pagerAnchorBuilder: function(idx, slide) { 
			return '.menu li:eq(' + idx + ') a';
		}
	});
	
	$('.intro .menu a').click(function(el) {
		location.href = el.currentTarget.href;
	});

	$('.menu a').mouseout(function(el) {
		$('#homeIntro').cycle(0);
	});
	
	$('#homeIntro').css('visibility', 'visible');
	
	//-- Fancybox --//
	
	$('.fancyLinkSwf').fancybox({
		//1200 x 700
		'width' : 980,
		'height' : 572
	});
	
	$('.fancyLinkIframe').fancybox({
		'width' : 800,
		'height' : 454,
		'autoScale' : false,
		'type': 'iframe'
	});
	
	$('.fancyLinkIframe2').fancybox({
		'width' : 849,
		'height' : 591,
		'autoScale' : false,
		'type': 'iframe'
	});
	
	$('.fancyLink').fancybox();
});
