/***********************************************************************************
*
* $Workfile: Tabs.js $ 
* SafeFile : $Archive: /ContentSystem/HelpSystem/Source/HelpSystemWeb/Scripts/Tabs.js $
* 
* $Revision: 0 $ 
*
* Purpose : 
*
* Modified : $Author: $ $Modtime: $
*
* Initial version by Alexey Kropotin (Hound) on Oct, 2004
* Copyright 2005 Saxo Bank. All rights reserved.
***********************************************************************************/

var currentTab = null;

function tabClicked(object)
{
	if (currentTab == null)currentTab = document.getElementById("toc");
	if (currentTab != null) currentTab.className = "TabStyle";
	currentTab = object;
	currentTab.className = "TabStyle selected";
}
