/*
/*  menu.js
*/

$(document).ready(function () {
  $("#menu li.top").each(function (index) {
    $(this).mouseover(function () { $(this).addClass("hover");    });
    $(this).mouseout( function () { $(this).removeClass("hover"); });
  });
});
