$(document).ready(function() { 
	$('ul.sf-menu').superfish({
		autoArrows: false,
		delay: 400
	});
	newWindow();
	moreInfo();
	
	$(window).scroll(function(e){
	    var t = $(this).scrollTop();
	    if (t > 110) {
		$('#nav').addClass('fixed');
	    } else {
		$('#nav').removeClass('fixed');
	    }
	});
});

function gotoPage(selectedPage) {
	var page = selectedPage.options[selectedPage.selectedIndex].value;
	window.location = page;
}

function newWindow() {
	$('.subnav li a[href^="http://"]').each(function(index, item){
		$(item).attr('target', '_blank');
	});
}

function moreInfo() {
	$('.content p a[href$="contact/"]').each(function(index, item){
		$(item).addClass('more');
	});
	$('.content p a[href$="inschrijfformulier/"]').each(function(index, item){
		$(item).addClass('more');
	});
}
