/*
' ============================================================
' Purpose: Highlight active menu item
' 
' 
' Notes:
' 
' ============================================================
' $Workfile: activeItem.js $
' $Modtime: 9/02/09 2:12p $
' $Revision: 1 $
' ============================================================
*/

function activeItem(val1, val2) {
	if (!val1 == "") {
	var activeBut = document.getElementById(val1); 
		activeBut.style.background = "#1d97b7";
		
		if (!val2 == "") {
			var activeBut2 = document.getElementById(val2); 
				activeBut2.setAttribute("class", "activeIndentmenu"); 
				activeBut2.setAttribute("className", "activeIndentmenu"); 
		}	
	var activeBut3 = document.getElementById(val1); 
		activeBut3.setAttribute("class", "accordion_headings header_highlight"); 
		activeBut3.setAttribute("className", "accordion_headings header_highlight"); 
	}
new Accordian('basic-accordian',3,'header_highlight');
}