function convert(direction) {
	new Effect.Parallel(
		[
			new Effect.Fade('intro_holder'),
			new Effect.Fade('intro_player')
		],
		{ afterFinish: moveOn }
	);
}

function moveOn() {
	window.location = '/wiezijnwij.html';
}

function validateAll() {
    var myAjax = new Ajax.Updater(
				{ success: 'contactform_holder', failure: 'message' },
				'/offertesubmit.php',
				{
					method: 'post',
					encoding: 'iso-8859-1',
					parameters: $('contactform').serialize()
				});
}
