$(document).ready(function () {
  initialize_topmenu();
});

function initialize_topmenu() {
  $('.topmenu_li').each(function () {
    var width;
    width = ($(this).width());

    $(this).find('ul').each( function () {
      $(this).css('min-width', width+10);
    });

    $(this).find('ul li:even').each(function () {
      $(this).addClass('topmenu_li_even');
    });

    $(this).bind('mouseover', function () {
      $(this).find('ul').show();
    });

    
    $(this).bind('mouseout', function () {
      $(this).find('ul').hide();
    })
  });
}