jQuery(
	function() {
		var currentParagraph = undefined;
		jQuery('.more_slider .read_more').click(
			function() {
				if (currentParagraph == undefined) {
					currentParagraph = jQuery(this).parent().children('div:first-child');
				}
				else {
					currentParagraph = currentParagraph.next();
				}
				currentParagraph.slideDown(
					"middle", 
					function() {
						if (currentParagraph.next().get(0).tagName.toLowerCase() != 'div') {
							currentParagraph.next().hide();
						}
					}
				);
				return false;
			}
		);
	}
);
