$(document).ready(function(){
	// stratenplan
	$("#stratenplan p").html("<iframe src='http://cms3.proximedia.com/Google/GoogleMap.asp?MapId=17798&Langue=NL&Options=100%25x100%25' width='800' height='585' scrolling='aut' frameborder='0'></iframe>");
    $(".stratenplan").click(function () {
		$("#stratenplan").fadeIn("slow");
		$("#container").fadeTo("slow", 0.30);
    });
    $("#stratenplan .close").click(function () {
		$("#stratenplan").fadeOut("slow");
		$("#container").fadeTo("slow", 1.00);
    });
	// formulier
	$("#contactForm").validate();
	$("input,textarea").focus(function() {
		$(this).addClass("curFocus")
	});
	$("input,textarea").blur(function() {
		$(this).removeClass("curFocus")
	});
});
