$(document).ready(function() {

	
	$('#ctrl_9').focus(function() {
		if (this.value == this.defaultValue) {
      $(this).val("")
		}
	});
	
	/*
	$('#ctrl_9').blur(function() {
		
		if (this.value != this.defaultValue && this.value != "") {
			var values = $(this).val();
			
			$.ajax({   
        type: "GET",   
        url: "index.php/suche.html",   
        data: "keywords="+values ,   
        success: function() {   
          $('.mod_article').html(data);
        }   
      });   
			
		}
		  
	});
	*/
	
	
});







