// JavaScript Document
$(document).ready(function(){
			//Makes the Image Slider Work
			$("#slider").easySlider({
				auto: true, 
				continuous: true
			});
			//When form is sent Show it.
			if(document.URL.indexOf("verzonden") > 0){
				document.getElementById('formhome').style.marginLeft = "0";
				document.getElementById('formhome').style.marginTop = "0";
				document.getElementById('formhome').removeChild(document.getElementById('formhomeid'));
				var newh = document.createElement('h3');
				newh.innerHTML = 'Uw Bericht is verzonden!';
				document.getElementById('formhome').appendChild(newh);
			}
		});	
