﻿$(document).ready(function() {
  $('#topMenu>li').hover(function(e) {
    $(this).css('border-bottom', 'solid 2px #a93528');
    $(this).children('ul').css('display', 'block');
  },
  function(e) {
    $(this).css('border-bottom-style', 'none');
    $(this).children('ul').css('display', 'none');
  });
})