$(document).ready(function(){
	initSlideshow();
	contact();
});

function initSlideshow() {
	$('#slideshow_foto').cycle({
		fx:     'fade',
		timeout: 1000,
		speed:	 2000
	});
}

var iconOK = '<img src="images/template/vink_oke.gif" alt="" />';
var iconError = '<img src="images/template/icon3.gif" alt="" />';
var iconDisabled = '<img src="images/template/vink_leeg.gif" alt="" />';

function contact() {
	$('span.icon').html(iconDisabled);
	$('#contactformulier').validate({
		debug: true,
		rules: {
			Aanhef: 'required',
			Naam: 'required',
			Emailadres: {
				required: true,
				email: true
			}
		},
		messages: {
			Aanhef: 'Vul a.u.b. uw aanhef in.',
			Naam: 'Vul a.u.b. uw naam in.',
			Emailadres: {
				required: 'Vul a.u.b. uw e-mailadres in.',
				email: 'Vul a.u.b. een geldig e-mailadres in.'
			}
		},
		errorPlacement: function(error, element) {
			error.insertAfter(element.parent().next('span'));
			element.parent().next('span.icon').html(iconError);
		},
		success: function(label) {
			label.prev('span.icon').html(iconOK);
			label.remove();
		},
		submitHandler: function(form) {
			var options = {
				url: 'requests/formulier.php',
				type: 'POST',
				success: function(data) {	
					if(data == 'goed'){
						$('#formulier_wrapper').html('<p>Uw bericht is succesvol verzonden.</p>');
						$('#formulier_wrapper').hide();
						$('#formulier_wrapper').fadeIn('slow');
						$('#formulier_wrapper').clearForm();
					} else {
						alert(data);
					}
				}
			}
			$(form).ajaxSubmit(options);
			return false;
		}
	});	
}

