$(document).ready(function(){
				   
	$('input[type=checkbox],input[type=radio]').prettyCheckboxes();
	
	/* submit hovers*/
	$("#submit").hover(function() { 
			$(this).addClass("hover"); 
		}, function() { 
			$(this).removeClass("hover"); 
	});
	
	if(document.location.href.replace('http://'+document.location.hostname+'/',"")=='contact') {
		$("#contactform").validate({
			errorElement: 'p',
			errorLabelContainer: ".error-container",
			rules: {
				contactpersoon: "required",
				email: {
					required: true,
					email: true
				}
			},
			messages: {
				contactpersoon: "<strong>U heeft geen contactpersoon ingevoerd.</strong>",
				email: {
					required: "<strong>U heeft geen e-mailadres ingevoerd.</strong>",
					email: "<strong>U heeft een ongeldig e-mailadres ingevoerd.</strong>"
				}
			}
		});
	}
});
