$(document).ready(function() {




	// fanCybox
	
	$(".thumb a").attr('rel', 'gallery').fancybox({
		'showNavArrows' : true,
		'centerOnScroll' : true,
		'scrolling' : 'no',
		'titlePosition'	:	'over',
			'onComplete'	:	function() {
				$("#fancybox-wrap").hover(function() {
					$("#fancybox-title").show();
				}, function() {
					$("#fancybox-title").hide();
				});
			}
	});
	
	// Fotoboek
	
	$(".album").hover(function() {
		$(this).find(".descr").show();
	} , function() { 
		$(this).find(".descr").hide();
	})
	
	// Submenu in hoofdmenu hover HORIZONTAL
	
	$("#menu.menu-h li a").hover(function() {
		
		$(this).parent().find("ul").show();
	} , function() { 
		
		$(this).parent().find("ul").hide();
	})
	$("#menu.menu-h li ul").hover(function() {
		//$(this).parent().find("a:first").addClass('on');
		$(this).show();
	} , function() { 
		//$(this).parent().find("a:first").removeClass('on');
		$(this).hide();
	})
	$("#menu.menu-h li a.on").hover(function() {
		//$(this).addClass('on');
	} , function() { 	
		//$(this).addClass('on');
	})
	
	
	$(".logos").cycle({
		fx: "scrollHorz",
		speed: 500,
		timeout: 4000
	});
	
	// Submenu in hoofdmenu hover VERTICAAL
	
	$("#menu.menu-v").find(".on").next("ul").show();

			
});
