jQuery(document).ready(function () {
	
	jQuery('li:empty').removeClass('navi_headlinesub');


	// Language Navigation -------------------------------------------	
	
	jQuery(".actlangWrapper, #langnavilayer").mouseleave(function(){
		jQuery(document).oneTime('1500ms', 'langTimer', function() {
			jQuery("#langnavilayer").fadeOut("slow");	
		});	
	});
	
	jQuery(".actlangWrapper").mouseenter(function(){		
		jQuery(document).stopTime('langTimer');
		jQuery("#langnavilayer").fadeIn("fast");	
	});
	
	jQuery("#langnavilayer").mouseenter(function(){		
		jQuery(document).stopTime('langTimer');
	});
	
});	
