$(document).ready(function(){

	$("#inp_naam").focus(function(){
		if (document.frm_contact.inp_naam.value=="Naam") { 
			document.frm_contact.inp_naam.value="";									
		}
	});
	$("#inp_naam").blur(function(){
		if (document.frm_contact.inp_naam.value=="") { 
			document.frm_contact.inp_naam.value="Naam";									
		}
	});
	
	$("#inp_adres").focus(function(){
		if (document.frm_contact.inp_adres.value=="Adres") { 
			document.frm_contact.inp_adres.value="";									
		}
	});
	$("#inp_adres").blur(function(){
		if (document.frm_contact.inp_adres.value=="") { 
			document.frm_contact.inp_adres.value="Adres";									
		}
	});	

	$("#inp_postcode").focus(function(){
		if (document.frm_contact.inp_postcode.value=="Postcode") { 
			document.frm_contact.inp_postcode.value="";									
		}
	});
	$("#inp_postcode").blur(function(){
		if (document.frm_contact.inp_postcode.value=="") { 
			document.frm_contact.inp_postcode.value="Postcode";									
		}
	});	

	$("#inp_plaats").focus(function(){
		if (document.frm_contact.inp_plaats.value=="Plaats") { 
			document.frm_contact.inp_plaats.value="";									
		}
	});
	$("#inp_plaats").blur(function(){
		if (document.frm_contact.inp_plaats.value=="") { 
			document.frm_contact.inp_plaats.value="Plaats";									
		}
	});	

	$("#inp_telefoon").focus(function(){
		if (document.frm_contact.inp_telefoon.value=="Telefoon") { 
			document.frm_contact.inp_telefoon.value="";									
		}
	});
	$("#inp_telefoon").blur(function(){
		if (document.frm_contact.inp_telefoon.value=="") { 
			document.frm_contact.inp_telefoon.value="Telefoon";									
		}
	});	
	
	$("#inp_fax").focus(function(){
		if (document.frm_contact.inp_fax.value=="Fax") { 
			document.frm_contact.inp_fax.value="";									
		}
	});
	$("#inp_fax").blur(function(){
		if (document.frm_contact.inp_fax.value=="") { 
			document.frm_contact.inp_fax.value="Fax";									
		}
	});	


	$("#inp_email").focus(function(){
		if (document.frm_contact.inp_email.value=="E-mail") { 
			document.frm_contact.inp_email.value="";									
		}
	});
	$("#inp_email").blur(function(){
		if (document.frm_contact.inp_email.value=="") { 
			document.frm_contact.inp_email.value="E-mail";									
		}
	});	

	$("#inp_woorden").focus(function(){
		if (document.frm_contact.inp_woorden.value=="Aantal woorden") { 
			document.frm_contact.inp_woorden.value="";									
		}
	});
	$("#inp_woorden").blur(function(){
		if (document.frm_contact.inp_woorden.value=="") { 
			document.frm_contact.inp_woorden.value="Aantal woorden";									
		}
	});	
	
	$("#inp_opmerkingen").focus(function(){
		if (document.frm_contact.inp_opmerkingen.value=="Aanvullende opmerkingen") { 
			document.frm_contact.inp_opmerkingen.value="";									
		}
	});
	$("#inp_opmerkingen").blur(function(){
		if (document.frm_contact.inp_opmerkingen.value=="") { 
			document.frm_contact.inp_opmerkingen.value="Aanvullende opmerkingen";									
		}
	});		

	
});