$(document).ready(function(){
$('#nav li.top').hover(
	function() {
		/*$('ul', this).animate({
			height: 'toggle'
		  }, {
			duration: 250, 
			specialEasing: {
			  height: 'linear'
			}, 
			complete: function() {
				if($(this).height() != 0) {
					$('#nav-container').height( $('#navigation').height()+$(this).height() );
				}
			}
		  });*/
		$('ul', this).css('display', 'block');
		$(this).addClass('hover');
		if($('ul', this).height() != 0) {
			$('#nav-container').height( $('#nav-background').height()+$('ul', this).height() );
		}
	},
	function() {
		/*$('ul', this).animate({
			height: 'toggle'
		  }, {
			duration: 250, 
			specialEasing: {
			  height: 'linear'
			}, 
			complete: function() {
				$('#nav-container').height(0);
			}
		  });*/
		$('ul', this).css('display', 'none');
		$(this).removeClass('hover');
		$('#nav-container').height(0);
	});
});
