// Div Toggle Switch
$(document).ready(function(){

	$("div.switcher").each(function(){

		var thisArticle = this;

		// Initially, hide the "Show" link
		$("span.hide, div.articleBody", thisArticle).hide();

		// The show and hide links both toggle themselves and the article body
		$("span.show a, span.hide a", thisArticle).click(function(){
			$("span.show, span.hide, div.articleBody", thisArticle).toggle();
			return false;
		});

	});

});

