$(document).ready(
function()
{
$('#Menu  li').hover(
   function() 
	{ 
		$(this).children('ul').show();
	} 
  ,
  function() 

	{ 

		$(this).children('ul').hide();

	}
  );

$('.sub').hover(
	function()
	{
  		$('.sub a').addClass('activeH');
	},
	function()
	{
		$('.sub a').removeClass('activeH');
	}
  
  );
 } 
 );