$(document).ready(function() {

    $('.tm-services a')
      .hover(
          function()
          {
        	  $(this).next('.stop-menu').css({'display': 'block'});
          },
          
          function()
          {
        	  $(this).next('.stop-menu').css({'display': 'none'});
          }
      )

    $('.stop-menu')
      .hover(
          function()
          {
        	  $(this).css({'display': 'block'});
          },
          
          function()
          {
        	  $(this).css({'display': 'none'});
          }
      )      

});
