// JavaScript Document

$(document).ready(function(){
/* Voreinstellungen */						 
	// Formular: Submit-Button ausblenden
	$("#commentform #submit").hide();
	// Formular: Infobox einblenden
   	$("#commentform").after("<p class='infobox'></p>");
	
	/* Spam-Schutz: Submit ein- und Infobox ausblenden */
		$("#mcspvalue").focus(function(){
		// wenn das Spam-Schutz-Feld den Fokus hat: Submit Button einblenden							   
		$("#commentform #submit").show();
		// ... und Infobox ausblenden
		$(".infobox").hide("slow");
	});
	
});							 