$(document).ready(function() {

	$(".inputtext").focus(function () {
		$(this).addClass("inputtext_hover");
	});

	$(".inputtext").blur(function () {
		$(this).removeClass("inputtext_hover");
	});

	$('#frmContact').FormValidate({
		phpFile:"php/contactform_send.php",
		ajax:true
	});
	
	/*
	$('#frmRegistreren').FormValidate({
		phpFile:"./php/user_submit.php",
		//ajax:true
	});
	*/
	
	$('#formInloggen, #frmWachtwoord, #frmProfielbijwerken, #frmRegistreren, #frmOfferteversturen').FormValidate({
		phpFile:"./php/user_submit.php"
		//ajax:true
	});
	
	$('#open-offerte').click(function() {
		$('#dialog').dialog('open');
	})

	$("#dialog").dialog({
		bgiframe: true,
		autoOpen: false,
		height: 500,
		width: 500,
		modal: true,
		resizable: false
	});

	$("#partners, #updates, #picts, #blok1, #blok2").shadow({
		color: "#444",
		offset: 5,
		opacity: 0.1
	});

});
