/*
' ============================================================
' Purpose: Highlight active menu item
' 
' 
' Notes:
' 
' ============================================================
' $Workfile: activeItem.js $
' $Modtime: 9/02/09 2:12p $
' $Revision: 1 $
' ============================================================
*/

function activeItem(val) {
	if (!val == "") {
		var activeBut = document.getElementById(val); 
		activeBut.setAttribute("class", "tabActive"); 
		activeBut.setAttribute("className", "tabActive"); 
	}
}

function activeItem2(val) {
	if (!val == "") {
		var activeBut = document.getElementById(val); 
		activeBut.setAttribute("class", "activeIndentmenu"); 
		activeBut.setAttribute("className", "activeIndentmenu"); 
	}
}
