var menuact=-1;

$(document).ready(function(){
  $('.menud').hide();
  $('.menu').click(function(){
    if (menuact==-1)
    {
      $('.menud').hide();
      $(this).next('div.menud').fadeIn('slow');
      menuact=$(this).next('div.menud').attr('alt');
    }
    else if (menuact==$(this).next('div.menud').attr('alt'))
    {
      $('.menud').hide();
      menuact=-1;
    }
  });
  $('.menu').mouseover(function(){
    if (menuact!=-1 && (menuact!=$(this).next('div.menud').attr('alt')))
      {
        $('.menud').hide();
      $(this).next('div.menud').fadeIn('slow');
      menuact=$(this).next('div.menud').attr('alt');
      }
  });
  $('.menud').each(function(){
    var elem=$(this).prev('.menu').children('a');
    var pos=elem.offset();
    $(this).css('top',((pos.top+elem.height()+12)+'px'));
    $(this).css('left',(pos.left+'px'));
  });
});


