//to make the trigger do 2 actions.
 
(function($){
 $(function(){
  $('.submenuheader').click(function(){
   var l = this.href;
   setTimeout(function(){window.location.href = l;}, 300);
  });
 });
})(jQuery);
 
