$(document).ready(function() {

	var default_bgcolor = $("#keuzescherm div.link").css("backgroundColor");
	
	$("#keuzescherm div.blok").mouseover(function() {
		$(this).children("div.link").stop().animate({ backgroundColor: '#635049' }, 200);
	}).mouseout(function() {
		$(this).children("div.link").stop().animate({ backgroundColor: default_bgcolor }, 200);
	});
	
	$("#keuzescherm div.blok div.foto").click(function() {
		document.location = $(this).parent().find("div.link a").attr("href");												   
	});
		
});