// function for tab switching
			


	//here is the function that will accept as an argument which tab to highlight
	function activatetab(tab_to_activate)
	{
		var tabcounter=0;
		//Declare a variable that is an array that has each tab name as an element
		var tab_names_array = new Array("Features","AccountServices","Disclosures");
		
		// go through array, if tab is the one to activate then activate it and its contents
		// if it is not the one to activate then hide its contents
		
		for(tabcounter=0;tabcounter<tab_names_array.length;tabcounter++)
		{
			if(tabcounter==tab_to_activate)
		
			{
				document.getElementById(tab_names_array[tabcounter] + "Tab").className="ActiveTab";
				document.getElementById(tab_names_array[tabcounter] + "Content").className="ActiveContent";
			}
			else
			{
				document.getElementById(tab_names_array[tabcounter] + "Tab").className="";
				document.getElementById(tab_names_array[tabcounter] + "Content").className="HiddenContent";
			}
		}
	}