$(document).ready(function(){
	$("#nav a").mouseover(function(){
		$(this).animate({ color: "white"}, 125);
		$(this).parent().animate({ backgroundColor: "#2c2c2c"},100);
	});
	$("#nav a").mouseout(function(){
		$(this).animate({ color: "#1c7178" }, 125);
		$(this).parent().animate({ backgroundColor: "#c8c8c8"},300);
	});
});


/**
* GALLERY functionaliteiten
**/
$(document).ready(function(){
	$("#thumbsHolder img").click(function(){
		var newImgSrc = $(this).attr("src");
		var newInfo = $(this).attr("id")+"info";
		var toAppend = $("#"+newInfo).html();
		$("#bigImg, #infoToAppend").fadeOut(150,function(){
			$("#infoToAppend").html(toAppend);
			$("#bigImg").attr("src",newImgSrc);
			$("#bigImg, #infoToAppend").fadeIn(100);			
		});
	});
});


$(document).ready(function(){
	$("#closeWindow").click(function() {   
		$(".processDiv").fadeOut(300);  
		$(".message").fadeOut(500);  
		$("#container").fadeTo("slow",1);
		$("h1").fadeTo("slow",1);
		$("#footer").fadeTo("slow",1);
	});		
	
});
$(document).ready(function(){
	$("#documentForm").validate();
});
