/******************************************************************************/
/*																			  */
/*    Form Script to manipulate and Validate Forms and Content			      */
/*    -------------------------------------------------------------------	  */
/*    Code copyright by Simon Jentsch 2009									  */
/*																			  */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

$(document).ready(function() {
	
	/* Autoanpassung des Kommentar Textfelds */
	$("#comment").TextAreaExpander();
	
	$("#comment").focus(function () {
		if ($(this).val() == "Trage hier deine Nachricht ein!") {
			$(this).val('');
		}
	});
	
	/* Anpassung des Namens an das eingegebene im Autor Textfeld (in Echtzeit) */
	$("input#author").keyup(function () {
		$("#dynamicName").html($("input#author").val());
		if ($("#dynamicName").text() != '') { $('#dynamicWant').text('möchte'); } else { $('#dynamicWant').text('möchtest'); $('#dynamicName').text('Du'); }
	});
	
});
