// JavaScript Document

//Simple function - changes the text on the page to the longer version, changes the href to a call to the lessQuote function below
function moreQuote(){
	//Change the text*/
	var quoteText = document.getElementById("biQuote");
	quoteText.innerHTML = "Sherry's stage presence is strong, clear and direct. She enters the stage and immediately there is a sparkle that connects to the audience. She projects a warmth and rapport that translates in both an intimate story swap setting or before a large audience. AND...that VOICE! I don't know where it comes from but perhaps there lives in her chords a pantheon of BOTH gods and goddesses! I hear a hidden musician in there as well for Sherry imbues musicality in a telling for folk tales. Her use of tones, timbres, and rhythms in her telling breathe life into her style yet never draw away from the service of the story. Her repertoire, developed over the decades she has been telling, is expansive. Her strength is folktales from around the world trend with a rich gravity of genres: cautionary, pourquoi, adventure, trickster, ghost/scary, 'Haunted Hearts': love-and-loss or love achieved, freedom stories (underground railroad and related stories)...and, as she quotes conjovially, 'just plain fun!'";
	
	//Change the function to call
	var callingAnchor = document.getElementById("quoteSwitch");
	callingAnchor.setAttribute("href", "javascript:lessQuote()");
	callingAnchor.innerHTML ="less";
}

//Simple function - changes the text on the page to the shorter version, changes the href to a call to the moreQuote function above
function lessQuote(){ 

	/*Change the text*/
	var quoteText = document.getElementById("biQuote");
	quoteText.innerHTML = "&#8230; possesses an &quot;ebullient style and energetic command of stage, adding a freshness to time-held folk tales and modern yarns.";

	//Change the function to call
	var callingAnchor = document.getElementById("quoteSwitch");
	callingAnchor.setAttribute("href", "javascript:moreQuote()");	
	callingAnchor.innerHTML ="more";
}
