$(document).ready(function() {

// Subnavigation
$('li.headlink').hover(function() {
		$('ul', this).stop().fadeIn('50', function() {
			$(this).css("opacity", "1.0");
	  });
	}, function() { 
		$('ul', this).stop().fadeOut('50', function() {
		});
});

// Tooltip Neu
var hide = false;
        
$(".tooltip").hover(function() {
	if (hide) clearTimeout(hide);
  	$(".tt_language").fadeIn();
  }, function() {
  hide = setTimeout(function() {$(".tt_language").fadeOut("50");}, 250);
  });

$(".tt_language").hover(function() {
  if (hide) clearTimeout(hide);
 	}, function() {
  hide = setTimeout(function() {$(".tt_language").fadeOut("50");}, 250);
});

}); /* Document ready() ends */
