$(function(){
	if($.browser.version=='6.0'){//IE6¶þ¼¶²Ëµ¥
		$('#menu>li').bind('mouseenter mouseleave',function(){
															$('>ul',this).toggle()
																.end().toggleClass('hover');
															});
	
	}
	
	$('#footer>ul>li').hover(function(){
												 var $ul=$(this).children('ul');
												 $ul.stop()
												 	.css({
														  display:'block',
														  top:-$ul.outerHeight()*2/3,
														  left:-($ul.outerWidth()-$(this).outerWidth())/2
														})
													.animate({
																top:-$ul.outerHeight()
																},800,'easeOutQuad');
												 }
												 ,function(){
													 $(this).children('ul').fadeOut(100);
												 });
			
	
});
