jQuery(function(){		
		$('#left-content h3').click(function(){
			var box = $(this).next();			
			box.slideToggle();						
		});
});
		
