var $ = jQuery.noConflict();

$(function(){
	$("ul.menu li").hover(function(){
		$(this).addClass("hover");
		var h = $(this).find('a').next().height();
		$('ul:first',this).css({'visibility':'visible','top':'100%','height':'0px'}).stop(true, false).animate({'height':h}, 200);
		}, function(){
			$(this).removeClass("hover");
			$('ul:first',this).css({'visibility':'hidden','top':'-1500px','height':'','overflow':''});
		});
	$("ul.menu li ul li:has(ul)").find("a:first").append("<span>&raquo;</span>");
});
$(function(){
	$("div.menu ul li").hover(function(){
		$(this).addClass("hover");
		var h = $(this).find('a').next().height();
		$('ul:first',this).css({'visibility':'visible','top':'100%','height':'0px'}).stop(true, false).animate({'height':h}, 200);
		}, function(){
			$(this).removeClass("hover");
			$('ul:first',this).css({'visibility':'hidden','top':'-1500px','height':'','overflow':''});
		});
	$("div.menu ul li ul li:has(ul)").find("a:first").append("<span>&raquo;</span>");
});
