$(document).ready(function () {
    // line between
    $('.submenu li:not(:last-child)').append('<span></span>');

    // rounded corners
    if (! $.browser.msie)
    {
      $('.submenu').corner('10px');

      $('.submenu li:first-child a').corner('round top 10px');
      $('.submenu li:last-child a').corner('round bottom 10px');
    }

    // info bubles
    $('a.popup-info').mouseenter(function () {
      $(this).prev('.info').fadeIn();
    });

    $('a.popup-info').mouseleave(function () {
      $(this).prev('.info').fadeOut();
    });

    // menu
    $('.submenu').hide();

    $('a.open-submenu').hover(function () {
      $('.submenu').hide();
      $(this).prev('.submenu').show();
    });

    $('a.open-submenu').prev('.submenu').mouseleave(function () {
      $(this).hide();
    });
    
  });
