$(document).ready(function(){

	$('#tooltip').hide();

	$('#drueber').mouseenter(function() {
		$('#tooltip').stop(true,true);
		$('#tooltip').fadeIn();
	});
	$('#drueber').mouseleave(function() {
		$('#tooltip').stop(true,true);
		$('#tooltip').fadeOut();
	});
});
