$(function() {
		
			var $el, $ps, $up, totalHeight;
			
			$(".drop-down .read-more-button").click(function() {
						
				totalHeight = 0
			
				$el = $(this);
				$p  = $el.parent();
				$up = $p.parent();
				$ps = $up.find("p:not('.read-more')");
				
				
				$ps.each(function() {
					totalHeight += $(this).outerHeight();
					
				});
							
				$up
					.css({
					
						"height": $up.height(),
						"max-height": 9999
					})
					.animate({
						"height": totalHeight
					});
				
				
				$p.fadeOut();
				
			
				return false;
					
			});
		
		});
