$(document).ready(function(){
	$('#nav').append(
		$('<a>')
			.attr({ 'href' : '#sitemap'})
			.addClass('sitemap')
			.html('<span>more</span>')
			.click(function(event){
				event.preventDefault();
				if($(this).hasClass('opened')){
					$(this).removeClass('opened');
					$('#nav')
						.animate({ height : 80 }, function(){
							$('#nav').css({ 'background-color' : 'transparent'});
							//$('#logo').fadeIn(100);
							$('#nav ul li ul').fadeOut();
						});
				} else {
					$(this).addClass('opened');
					$('#nav ul li ul').fadeIn();
					//$('#logo').fadeOut(100, function(){
						$('#nav').css({ 'background-color' : '#fff'});
					//});
					$('#nav')
						.animate({ height : 200 });
				}
			})
	)
});

