$(document).ready(function(){
	$('#menu li').each(function(_ind, _el) {
		var _box = $(_el).find('div:first');
		if($(_el).find('li').hasClass('active')) {
			_box.height('auto');
		}
		else {
			if (!$(_el).hasClass('active')) {
			$(_el).hover(
				function(){
					_box.stop().css('overflow','hidden').animate({height: _box.children('ul').outerHeight()}, 500, function (){
						_box.css('height','auto');
					});
				},
				function(){
					_box.stop().css('overflow','hidden').animate({height:0}, 500);
				}
			);
			}
		}
		if ($(_el).hasClass('active')) {
			_box = $(_el).find('div');
			_box.height('auto');
		}
	});
	
	//$('.faq-navigation li').click(function(){
		//$(this).find('ul').slideToggle();
		//return false;
	//})
});