$(document).ready(function()
{  
	$("#domein").focus(function(){
		if($(this).val() == "vul de gewenste domeinnaam in"){
			$(this).val("");
			$(this).css("font-style", "normal");
			$(this).css("color", "#3189c6");
		} 
	});
	$("#domein").blur(function(){
		if($(this).val() == ""){
			$(this).val("vul de gewenste domeinnaam in");
			$(this).css("font-style", "italic");
			$(this).css("color", "#99a0b3");
		} 
	});
});