$(document).ready(function(){

	$('#m-stopmenu li a').hover(
		 function () {
			var box = '#' + 'text-' + $(this).parent().attr('id');
			$(box).css('display','block');
		  },
		  function () {
			var box = '#' + 'text-' + $(this).parent().attr('id');
			$(box).css('display','none');
		  }
		)
});
