$(document).ready(
	function()
	{
	
		$('.ext_main_menu > li').hover(	function() 
								{
									$(this).addClass('hover');
									$(this).find('ul').show();
								},
								function() 
								{
									$(this).removeClass('hover');
									$(this).find('ul').hide();
								});
	
		}); 

