$(document).ready(function() {
	$("#supernav").find("a").hover(
	  function () {//over
	    $(this).parent().addClass('over');
	  }, 
	  function () {//out
	    $(this).parent().removeClass('over');
	  }
	);
	
	$(".fotos a").fancybox();
	
	$('.textarea textarea').focus(function(){
		$(this).parent().addClass('focus');
	}).blur(function(){
		$(this).parent().removeClass('focus');
	});
	
	
	/* Page specific things */
	$('#nav_sub:empty').hide();
	$('#emaillijst').validate();
	$('#inschrijven').click(function(e){
		e.preventDefault();
			
		$('#emaillijst').submit();
	});
	
	$('#selectMailingList').change(function(e){
		var mailinglist = $(this).val();
		$('.hiddenFields input[name="list"]').val(mailinglist);
	});
	
	//load google maps
	if(typeof load=="function"){
		load();
	}
	
	$('#inschrijven').click(function(e){
		e.preventDefault();
		
		$('#mailinglist_form').submit();
	});

	$('#contact').click(function(e){
		e.preventDefault();
		
		$('#freeform').submit();
	});
});


