
$(document).ready(function() {

	$("input[type=text], textarea").focus(function(){
		if($(this).val() == $(this).attr('defaultValue')) {
			$(this).val('');
		}
	});
	
	$("input[type=text], textarea").blur(function(){
		if ($(this).val() == '') {
			$(this).val($(this).attr('defaultValue'));
		}
	});
});


var charsLimit = 1000;

function textEmptyCheck(){
  var tex = $("#textarea_text").val();
  var len = tex.length;
  
  if (( len > 0 ) && ( tex != 'Ihre Nachricht')){
    document.getElementById('left_chars').firstChild.nodeValue = (charsLimit - len) + '/' + charsLimit + ' Zeichen übrig';
  }
}

function charsLeftCounter(){
  var tex = $("#textarea_text").val();
  var len = tex.length;
  
  if ( len > charsLimit ) {
    tex = tex.substring(0,charsLimit);
     $("#textarea_text").val(tex);
    return false;
  }
  
  document.getElementById('left_chars').firstChild.nodeValue = (charsLimit - len) + '/' + charsLimit + ' Zeichen übrig';
}