Must include "read-more" class on div with content that is hidden before expanding.
.read-more { display: none; }
a tag to allow js to activate is as follows
<a href="#read-more">... Read More</a>
$('a[href="#read-more"]').click(function(e){
e.preventDefault();
$(this).hide();
$('.read-more').slideDown();
});