$(document).ready(function(){

    // Zet hier je javascript
	Cufon.replace(
		"#nav>li>a, .cufon, #main h1, #main h2, #main h3", {
			hover: { a:true },
			ignore: {ul:true}
	    }
	);
	$("#nav>li").bind("mouseleave",function(){
		var id = $(this).attr('id');
		Cufon.replace('#'+id+' > a', {
			color: '#ffffff'
		});
	});
	
	$("a.fancybox").fancybox();
	$(".guest-reaction").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'centerOnScroll':	true,
		'iframe'		:	true,
		'hideOnOverlayClick'	:	false,
		'onClosed': function() {
		    parent.location.reload(true);
		  }
	});
	
});
