////////////////////
//Change the number below to how many events and links you will have in the ticker
////////////////////

var number_of_events = 1;

////////////////////
// DO NOT CHANGE THESE TWO VALUES BELOW
////////////////////
var event = new Array();
var link = new Array();

////////////////////
//For each event, type out the text you want to display and the corresponding link that text will go to.  Make sure that the numbers match for the event and the link.  The first one (with the number "0" is an example.
////////////////////


// var event[0] = "This is my event";
// var link[0] = "http://www.google.com";


////////////////////
// Be sure to keep the example above in tact for future reference.
// The listings below are your actual events.
////////////////////

event[1] = "";
link[1] = "";


////////////////////
// DO NOT EDIT ANYTHING BELOW THIS LINE.
////////////////////

for(i = 1; i <= number_of_events; i++){

	
	document.write("<a href='");
	document.write(link[i]);
	document.write("' style='text-decoration: none'><font color='#FFFFFF'>");
	document.write(event[i]);
	document.write("</font></a>");
	
	if(i != number_of_events){
	document.write("<font color='#FFFFFF'>&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;</font>");
	}
	
}