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