$(document).ready(function(){
   $('#langues ul>li>ul').css('display', 'none');

   var langSegments = new Array(
     'inter',
     'europe',
     'middleeast',
     'asiapacific',
     'latinamerica'
   );

   for(place in langSegments) {

       $('#langues ul>li#' + langSegments[place]).bind('click',
            function(){
                var statusHolderInter = $(this);
                if(statusHolderInter.attr('animating')!='true') {
                  statusHolderInter.attr('animating', 'true');
                  $(this).children('ul').slideDown('fast', function() { statusHolderInter.attr('animating', '');});
                }
            }).bind('click',
            function(){
                var statusHolderInter = $(this);
                if(statusHolderInter.attr('animating')!='true') {
                  statusHolderInter.attr('animating', 'true');
                  $(this).children('ul').slideUp('fast', function() { statusHolderInter.attr('animating', '');});
                }
            }
       );

   }

   $('#langues ul>li>ul>li').hover(
        function(){
            $(this).css('background-color', '#000000');
        },
        function(){
            $(this).css('background-color', '#242021');
        }
   )

});