function hideLanguageHints() {
    var $active = jQuery('#language_infos');

    if ( $active.length == 0 ) return;

    $active.animate({opacity: 0.0}, 1500, function() {
			$active.css({opacity: 0.0});
        });
}

jQuery(function() {
    setTimeout( "hideLanguageHints()", 8000 );
});

