$(document).ready(function() { //  everybody ready?
  
  $(".maybe").hide();  // collapse on opening
   
  $(".moreorless").click(function() { // attach to a click on anything with this class
  	if ($(this).text() == 'Read more...') {  // toggle the messagae appropriately
		$(this).text("Close");
  		$(this).css({'width' : '8em', 'color' : 'red'});
	} else {
		$(this).text("Read more...");
		$(this).css({ 'width' : '13em', 'color' : '#586293'});
	}	
    $(this).next(".maybe").slideToggle("slow"); // toggle content in and out  
  });
  
});
