$(function(){
	$("#menu td").hover(
		function(){
			$(this).children("ul").stop().css({
			'height':'',
			'overflow':''
			}).hide().slideDown();
		},
		function(){
			$(this).children("ul").stop().show().slideUp('fast');
		}
	);
	$("#menu td > ul > li").hover(
		function(){
			$(this).children("ul").stop().css({
			'width':''
			}).hide().animate({ width: 'show' }, 300);
		},
		function(){
			$(this).children("ul").stop().show().animate({ width: 'hide' }, 150);
		}
	);
	
	
});