$(document).ready(function() {

	$(".imgpop").fancybox({ 'overlayShow': true });
	
    $(".hoofdmenu ul li").hover(function() {$(this).addClass("over"); $('.sub1', this).css('display', 'block');}, function() {$(this).removeClass("over"); $('.sub1', this).css('display', 'none');});   $(".hoofdmenu .sub1 li").hover(function() {$(this).addClass("over"); $('.sub2', this).css('display', 'block');}, function() {$(this).removeClass("over"); $('.sub2', this).css('display', 'none');});

	// Home slider Text
	$(".topmenu ul li a").hover(function() {
		$(this).stop(true, true).animate({ marginTop: '-2px'}, 200);
	}, function() {
		$(this).stop(true, true).delay(50).animate({ marginTop: '-5px'}, 200);    
	});

	// Social Media icons
	$(".socialmedia a").hover(function() {
		$(this).stop(true, true).animate({ marginTop: '2px'}, 200);
	}, function() {
		$(this).stop(true, true).delay(50).animate({ marginTop: '5px'}, 200);    
	});
	
	
	// Eerste submenu actief
	if ($('.kolomsub ul li:first').hasClass('act')) {
		$('.kolomsub ul li.act').find('.sub_topleft').hide();
		$('.subtop').find('.sub_bottomleft').hide();
	};

	// Laatste submenu actief
	if ($('.kolomsub ul li:last').hasClass('act')) {
		$('.kolomsub ul li.act').find('.sub_bottomleft').hide();
		$('.subbottom').addClass('subbottomact');
		$('.subbottom').find('.sub_topleft').hide();
	};

	// Bij één submenu
	if ($('.kolomsub ul').not('.submenu2')) {
		//$('.subtop').find('.sub_bottomleft').hide();
		//$('.subbottom').find('.sub_topleft').hide();
	};
	
	
	
	
});

