$(document).ready(function(){
$("a#animate").click().toggle(function(){
		$("div#navi1").animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');
	}, function() {
		$("div#navi1").animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
	});

});


