/* Author: Michael Lawrence
   Date:   January 2011
   For:    windyrock.org
*/

$(".more_link").click(function(){
	$(this).next("div.more").slideToggle("slow");
});

