/*
	IE6 Patches:  Code to make all this work under IE6	
	IE6 cannot handle "hover" functionality on its own.  
		We need to help it with additional code, 	
		in this case, JavaScript 			 
*/	 
	function showMenu(my_id) {
		if (document.all && document.getElementById) {
			ul = document.getElementById(my_id);
			ul.style.display = 'block';
			setTimeout("funcDummy",250);
		}
	}
	
	function hideMenu(my_id) {
		if (document.all && document.getElementById) {
			ul = document.getElementById(my_id);
			ul.style.display = 'none';
			setTimeout("funcDummy",250);
		}
	}

/*======================================================================*/
/*	 Function to generate the Left Menu Box items			*/
/*		Create arrays of menu items for each subject area	*/
/*======================================================================*/
	/* Menu details array for Left Menu Box */
	/* ===================================== */
	
	var menuLeftBar=new Array()

		menuLeftBar[0]=''; /* Entry [0] not shown in IE6 !!!
								So, this dummy entry !!! */
		menuLeftBar[1]='<a href="What Is New.htm">What is new?</a>';

		menuLeftBar[2]='xxxx';	/* To mark end of list - essential */


function funcGenerateLeftMenuBox (parMenuTitle) {

	var I=0;
	var J;

	document.write ('<div  class="divLeftSideBarContainer">	');	

	I=0;
	while (parMenuTitle[I] != "xxxx") {

	/* for (I=0; I<6; I=I+1) { */
    if (parMenuTitle[I] != "")
    {
		document.write ('	<div  class="divLeftSideBarMenuItem"> '); 			
		document.write ('		<div class="divLeftSideBarTextBoxes"> ');		
		document.write(parMenuTitle[I]); 		
		document.write ('		</div> '); 

document.write ('<img src="Images/Sidebar Gradient Background 01-01 100x20px Normal.jpg"> '); 
		document.write (' 	</div> '); 
     }
		I++;
	} 

	document.write ('</div> ');

}

/*======================================================================*/
/*	 Function to generate the Main Dropdown menus			*/
/*======================================================================*/



function funcDummy() {
	}


/*======================================================================*/
/*	Code to generate Left Side Menu Box				*/
/*======================================================================*/

function funcGenerateLeftMenuBoxSaved () {
	setTimeout("funcDummy", 500);
	}