
 $(document).ready(function(){
 	
	/* löschbutton confirm */	
	$('#kommentarTitelInput').click(	
		function(){			
			if(this.value == 'Ihr Titel...') {
				this.value = '';	
			}					 
		}	
	)
	
	$('#kommentarTextArea').click(	
		function(){	
			if(this.value == 'Ihr Kommentar...') {
				this.value = '';	
			}					 
		}	
	)

	
	
 });
