$(document).ready(function() {
	if (!$.browser.msie) {
		$("#nav li").hover(
		function() { $("span", this).fadeIn(300); },
		function() { $("span", this).fadeOut(300);});
	}
	
	$(".contact form").submit(function(){
    	var error=0;
    	$(".verplicht input, .verplicht textarea").each(function(){
    		if ( $(this).attr("value")=="" ) { 
    			$(this).focus().css({border:"1px solid red"}).after("<p class=important><strong>"+$(this).attr("id")+"</strong> is een verplicht veld.</p>");
    			error++;
    		}
    	});
    	
    	if (error>0) { return false; } else { return true; }
    });
    
    $("#nav li a."+$("#wrap").attr("class")).addClass("active");
});
