$(document).ready(function() {
	/*
    $("a[title]").tooltip({ 
	    track: true, 
	    delay: 2000, 
	    showURL: false, 
	    fade: 500 
	});
    */
	
	$('#search input, #search_again input')
        .focus(function() {
    		if (this.value=='Suche') { 
    			this.value=''; 
    		} else { 
    			var me = this; 
    			window.setTimeout(function() { me.select(); }, 100); 
    		}
    	})
        .blur(function() {
    		if (this.value=='') { 
    			this.value='Suche'; 
    		}
    	});
});

