// JavaScript Document
var page_array = new Array("albums","records","shirts");

function hideSubs(the_sub)
{
	for (i=0; i<=page_array.length; i++)
		{
	    	var my_sub = document.getElementById(page_array[i]);
			if (page_array[i] == the_sub)
			{
				showSub(the_sub);	
			}
			else {my_sub.style.display = "none";}
	 	}	
}
function showSub(the_sub)
{
	document.getElementById(the_sub).style.display = "block";	
}

function displaySubs(the_sub)
{
  	if (document.getElementById(the_sub).style.display != "none")
	{
	  	hideSubs(the_sub);
    }
	else
	{
		hideSubs(the_sub);
	}
}

var package_array = new Array("theStandard","consulting","tutoring");

function hidePackages(the_package)
{
	for (i=0; i<=package_array.length; i++)
		{
	    	var my_package = document.getElementById(package_array[i]);
			if (package_array[i] == the_package)
			{
				showSub(the_package);	
			}
			else {my_package.style.display = "none";}
	 	}	
}

function displayPackages(the_package)
{
  	if (document.getElementById(the_package).style.display != "none")
	{
	  	hidePackages(the_package);
    }
	else
	{
		hidePackages(the_package);
	}
}