
//function switchSpiff (activeButton) {
   // try
    //{
	//    var homeTabsIDs = new Array('spiff1', 'spiff2', 'spiff3', 'spiff4', 'spiff5');
	//    for(i = 0; i < homeTabsIDs.length; i++)
	//    {
 	//	document.getElementById(homeTabsIDs[i]).style.display = 'none'; //hides the text associated with button 
	//    }
	//    document.getElementById(activeButton).style.display = 'block'; //shows the text associated with button
    //}
   // catch(err)
   // {
        //do nothing
  //  }
//}

function switchSpiff (activeButton)
{
    var homeTabsIDs = new Array('spiff1', 'spiff2', 'spiff3', 'spiff4', 'spiff5');
	for(i = 0; i < homeTabsIDs.length; i++)
	{
 	    document.getElementById(homeTabsIDs[i]).style.display = 'none'; //hides the text associated with button 
	}
	document.getElementById(activeButton).style.display = 'block'; //shows the text associated with button

}