$(document).ready(function() {
		
		$('#demo_content').hide();
		
		$('.demo').click().toggle(function(){
			$(this).next().animate({
				height: 'show',
				opacity: 'show'
				}, 'normal');
			}, function() {
			
			$(this).next().animate({
				height: 'hide',
				opacity: 'hide'
				}, 'normal');
		});
});
	
