// JavaScript Document
jQuery(document).ready(function() {
	jQuery(".expandable").hide().after("<div class='expand-toggle'>Show More...</div>").next().toggle(
			function(){
				jQuery(this).text("Show less...").prev().slideDown("fast");
			},
			function(){
				jQuery(this).text("Show more...").prev().slideUp("fast");
			}
	);
});