$(document).ready(function(){
  $("#HorMenuID").dropmenu();
  $("#VerMenuID").dropmenu();
  $("#HorMenuID li:last a").css("padding-left" , "13px");
  $("#HorMenuID ul").hover (function(){
  	$(this).parent().children('a').addClass('selected');
  },
  function() { 
      $(this).parent().children('a').removeClass("selected"); 
   });
});
