	function eventsHandler(){
		
		var eventList=[];

		//ONLY EDIT BETWEEN THESE COMMENT LINES -- DO NOT EDIT ABOVE THIS LINE
		
		//Set eventsOn to 1 to display events, 0 to hide the events display
		eventsOn = 0;

		//Example event entry array format -- Make sure array is number sequentially, starting at 0
		//Leave URL portion of array entry blank if no URL is available
		//**SCRIPT CANNOT HANDLE STRAIGHT QUOTATION MARKS, MUST USE HTML EQUIVALENT SUCH AS &quot;
		//eventList[0]=Array("Event 1 Title","Event 1 Description","Date 1 HERE","URL HERE");
		//eventList[1]=Array("Event 2 Title","Event 2 Description","Date 2 HERE","URL HERE");
		
		//Events go here
		eventList[0]=Array("NYS Local Government IT Directors Association Annual Spring Conference ","Visit us at NYS Local Government IT Directors Association Annual Spring Conference May 11 - 14 2010 at The Saratoga Hilton and Conference Center.","May 11 - 14, 2010","http://www.nyslgitda.org/meeting%20schedule.htm");

		//ONLY EDIT BETWEEN THESE COMMENT LINES -- DO NOT EDIT BELOW THIS LINE

		var i = eventList.length;

		for (j=0;j<i;j++ )
		{
			tempTitle = eventList[j][0];
			tempDescription = eventList[j][1];
			tempDate = eventList[j][2];
			tempURL = eventList[j][3];
			if (j!=i-1)
			{
				if (tempURL!="")
				{
									document.getElementById("eventslist").innerHTML += '<div style="float: left; width: 100%; height: auto; margin-bottom: 15px;"><div style="float: left; width:100px; height: 100&; font-weight: bold; margin-right: 5px;">' + tempDate + '</div><div style="float: right; width:570px; height: auto; font-weight: bold; font-size: 120%;  margin-bottom: 3px;"><a href="' + tempURL + '" target="_BLANK" style="text-decoration: none;">'+ tempTitle + '</a></div><div style="float: right; width:570px; height: auto; font-size: 110%;">' + tempDescription + '<hr/></div></div>';
				}
				else {
					document.getElementById("eventslist").innerHTML += '<div style="float: left; width: 100%; height: auto; margin-bottom: 15px;"><div style="float: left; width:100px; height: 100&; font-weight: bold; margin-right: 5px;">' + tempDate + '</div><div style="float: right; width:570px; height: auto; font-weight: bold; font-size: 120%;  margin-bottom: 3px;">'+ tempTitle + '</div><div style="float: right; width:570px; height: auto; font-size: 110%;">' + tempDescription + '<hr/></div></div>';
				}
			}
			else{

				if (tempURL!="")
				{
									document.getElementById("eventslist").innerHTML += '<div style="float: left; width: 100%; height: auto; margin-bottom: 5px;"><div style="float: left; width:100px; height: 100&; font-weight: bold; margin-right: 5px;">' + tempDate + '</div><div style="float: right; width:570px; height: auto; font-weight: bold; font-size: 120%;  margin-bottom: 3px;"><a href="' + tempURL + '" target="_BLANK" style="text-decoration: none;">'+ tempTitle + '</a></div><div style="float: right; width:570px; height: auto; font-size: 110%;">' + tempDescription + '</div></div>';
				}
				else {
					document.getElementById("eventslist").innerHTML += '<div style="float: left; width: 100%; height: auto; margin-bottom: 5px;"><div style="float: left; width:100px; height: 100&; font-weight: bold; margin-right: 5px;">' + tempDate + '</div><div style="float: right; width:570px; height: auto; font-weight: bold; font-size: 120%;  margin-bottom: 3px;">'+ tempTitle + '</div><div style="float: right; width:570px; height: auto; font-size: 110%;">' + tempDescription + '</div></div>';
				}
			}
			

				
		}

				if (eventsOn)
		{
			document.getElementById("events").style.display = "block";
		}

	}