(function ($) {
  // Insert line on menu item hover
  $(document).ready(function() {
    // Primary top-level nav behaviour
    $("div.menu-main a").hover(function() {
      $(this).parent().append("<div class='line' />");
    }, function() {
      $(this).parent().children("div.line").detach();
    });

    // Footer top-level nav behavour
   $("div.menu-footer a").hover(function() {
     $(this).parent().append("<div class='line' />");
   }, function() {
     $(this).parent().children("div.line").detach();
   });
   $("#cpc-page .menu-block").prepend("<div class='line' />");
   $("#cpc-page .menu-block.bugs-menu li:nth-child(even)").addClass('odd');
  });
})(jQuery);
;

