$(document).ready(function()
{
// Find all elements of class 'exnav' and extend them. 
	$(".exnav > ul").mouseenter(function()
	{
		$(this).addClass("over");
	}).mouseleave(function()
	{ 
		$(this).removeClass("over");
	});
// For H2 with UL only	
	$("li").has("ul").each(function()
	{
		if ($(this).find("h2").find("a").html())
		{
			$(this).children("h2").children("a").addClass("drop");
		}
	});
	$(".exnav>li:has(ul)>a").addClass("drop");
	$(".exnav>li>ul>li:has(ul)>a").addClass("drop");
	$(".exnav>li>ul>li>ul>li:has(ul)>a").addClass("drop");
	
	$(".exnav li").hover(
	
	function(){
		$(':animated').stop().removeAttr('style');
		$(this).show();
		$(this).children("ul").show(); 
	},
	function(){
		$(this).children("ul").fadeOut(2000);
	});
}); 
