$(function(){
  $("#roadbike, #dirtbike").remove();
  $("#products, #faq, #quote, #application").css("display", "inline");
  $("#nav-main li:has(ul)").hover(function(){
    $(this).addClass("over").children("ul").css({
      top: ($(this).children("a").offset().top + $(this).children("a").outerHeight() - $("#header").offset().top - 1) + "px",
      left: ($(this).offset().left - $("#nav-main").offset().left) + "px"
    });
  }, function() {
    $(this).removeClass("over");
  });
})

