var NOW = false;

$(document).ready
(
	function()
	{
		$('.topnav .li1').hover
		(
		 	function()
			{				
				$(this).addClass('over');
				hwnd = $(this).find('ul');
				if($(hwnd).length > 0)
				{
					$(hwnd).show();
					$(this).addClass('over2');
				}
			},
		 	function()
			{
				if(NOW) 
					return false;
				$(this).removeClass('over').removeClass('over2');
				$(this).find('ul').hide();
			}
		);
		
		$('.topnav li ul li').hover
		(
		 	function()
			{
				NOW = true;
				$(this).addClass('over');
			},
		 	function()
			{
				NOW = false;
				$(this).removeClass('over');
			}
		);
	}
)
