var $j = jQuery.noConflict();
	
	$j(function(){
	
	    $j("input.optinbtn").click(function(){
		    
		  var name = $j("input#id_name").val();
		  $j(".optinnaam").animate({ backgroundColor: "white", color: "#666" }, 'fast');
		  	if (name == "" || name == "Vul hier je voornaam in.." || name == "Vul svp je voornaam in..") {  
		  		
		  		$j(".optinnaam").animate({ backgroundColor: "red", color: "white" }, 'fast');
		  		$j(".optinnaam").val("Vul svp je voornaam in..");
		  		
	 		};
	 	  var email = $j("input#id_email").val();
	 	  $j(".optinmail").animate({ backgroundColor: "white", color: "#666" }, 'fast');
		  	if (email == "" || email == "Vul hier je e-mailadres in.." || email == "Vul svp je e-mailadres in..") {  
		  		
		  		$j(".optinmail").animate({ backgroundColor: "red", color: "white" }, 'fast');
		  		$j(".optinmail").val("Vul svp je e-mailadres in..");
		  		
	 	  };
	 	  
	 	  if (name == "" || name == "Vul hier je voornaam in.." || name == "Vul svp je voornaam in.." || email == "" || email == "Vul hier je e-mailadres in.." || email == "Vul svp je e-mailadres in..") {
	    
		 	  return false;
		 	  	
	 	  }
	    });
	
	});
