<!--
		
	var arrMenuDescriptions = new Array();
				
	arrMenuDescriptions[0]="Class Inc. values Individuals, Quality, Community, Diversity and Client Focus."; //values
	arrMenuDescriptions[1]="Community based day activities that promote independence and inclusion."; //options
	arrMenuDescriptions[2]="Opportunities to participate in sport and recreational activities."; //recreation
	arrMenuDescriptions[3]="Training & support for volunteers involved in activities with people with disabilities."; //volunteers
	arrMenuDescriptions[4]="Training for groups and agencies on a range of topics."; //training
	arrMenuDescriptions[5]="Empowering people with self esteem and confidence."; //community access
				
	function highlightText(strElementId,strColor)
		{
			document.getElementById(strElementId).style.color=strColor;
						
		}
					
	function redirectToURL(strPageAddress)
		{
			document.location=strPageAddress;
		}
					
	function displayMenuArrow(intIndex,intStatus)
		{
			if(intStatus==1)
				{
					//check the browser and display the arrow as needed
					if (navigator.appName == "Microsoft Internet Explorer")
						{
							//ie, so display the menu bgfade as a div ie filter
							//check for clones
							if(navigator.userAgent.indexOf('\)') == (navigator.userAgent.length-1))
								{
									document.getElementById('menu' + intIndex).style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/main_desc_fadebg4.png',sizingmethod='scale')";								
									document.getElementById('menuarrow' + intIndex).innerHTML="u";
								}
							else
								{
									document.getElementById('menu' + intIndex).style.backgroundImage = "url(images/main_desc_fadebg4.png)";
									document.getElementById('menuarrow' + intIndex).innerHTML="";
								}											
						}
					else
						{
							document.getElementById('menu' + intIndex).style.filter="";
							document.getElementById('menuarrow' + intIndex).innerHTML="";
						}							
					
					document.getElementById('menuarrow' + intIndex).style.visibility='visible';
					//display the menu item description
					document.getElementById('menutext' + intIndex).innerHTML = arrMenuDescriptions[intIndex-1];
					//change the text color as mouseover text
					document.getElementById('menu' + intIndex).style.color='#e12466';
					
				}
			else
				{
					//clear the fade bg and the text mouseover color								
					document.getElementById('menu' + intIndex).style.filter="";								
					document.getElementById('menu' + intIndex).style.color="#244e93";								
					document.getElementById('menu' + intIndex).style.backgroundImage = "";
					//clear the arrow
					document.getElementById('menuarrow' + intIndex).innerHTML="";									
					document.getElementById('menuarrow' + intIndex).style.visibility='hidden';
					//clear the description
					document.getElementById('menutext' + intIndex).innerHTML ="&nbsp;";
								
				}
		}
		
	function swapImages()
		{
		
		}
			
		
//-->	