﻿jQuery(document).ready(function(){
	
	//loop through bio item
	jQuery(".ExpansionItem").each(function(){
		
		//attach click to each link
		jQuery(this).children(".ExpanderLinks").click(
			function(){
				if(jQuery(this).attr("id") == ""){
					//open
					jQuery(this).attr("id", "Expanded");
					jQuery(this).find("#lnkExpanderIco").text("-");
					
				}
				else if(jQuery(this).attr("id") == "Expanded"){
					//close
					jQuery(this).attr("id", "");
					jQuery(this).find("#lnkExpanderIco").text("+");	
				}
				jQuery(this).parent().find(".ExpanderText").slideToggle('fast');	
				
				return false;
			}
		);
	});
	
	//add a click to the full bio btn
	jQuery(".GlobalToggle a").click(
		function(){
			//loop through all of the child links
			jQuery(".ExpanderLinks").each(function(){
				
				if(jQuery(".GlobalToggle a").html() == "Full Text"){
					//open
					if(jQuery(this).attr("id") == ""){
						jQuery(this).attr("id", "Expanded");
						jQuery(this).find("#lnkExpanderIco").text("-");
						jQuery(this).parent().find(".ExpanderText").slideToggle('fast');
					}
				}
				else {
					//close
					if(jQuery(this).attr("id") == "Expanded") {
						//close
						jQuery(this).attr("id", "");
						jQuery(this).find("#lnkExpanderIco").text("+");	
						jQuery(this).parent().find(".ExpanderText").slideToggle('fast');
					}
				}
			});
			
			//set the new toggle text
			if(jQuery(".GlobalToggle a").html() == "Full Text"){
				jQuery(".GlobalToggle a").html("Close All");
			}
			else {
				jQuery(".GlobalToggle a").html("Full Text");
			}
			
			return false;
		}
	);
});

