$.noConflict();
jQuery(document).ready(function($) {

	/* Suchfeld leeren */
	$("#suchformular .search-input").focus(function() { 
		$(this).val(''); 
	});

});

