// JavaScript Document
function mouseovertxt(num)
	{
	var num, desc, textBox;
	
	if (num == '0') {
	desc = ("Welcome Member :) \nAs a Duke City Sports member, you have access to restricted areas of this website. If you do not already have your login & password, send an email to chuy@dukecitysports.com.\nThanks, Chuy. ")	
	}
	else if (num == '1') {
	desc = ("Link: Home Page... \n\nClick here to visit http://www.dukecitysports.com. This just returns you to the main website page.")	
	}
	else if (num == 2) {
	desc = ("Link: Events Calendar Page... \n\nClick here to view our events calendar. ")
	}
	else if (num == 3) {
	desc = ("Link: Photo Gallery Page... \n\nView photos and videos from past sporting events. Random shots of craziness and fun!")
	}
	else if (num == 4) {
	desc = ("Link: Live Chat... \n\nDownload and launch the live D.C.S. instant chat client. Chat with your fellow D.C.S. members and friends.")
	}
	else if (num == 5) {
	desc = ("Link: Web Email Page... \n\nCheck your D.C.S. email. Hosted by GMAIL, this is the perfect place to send and receive attachments. Beats using your work email.")
	}
	else if (num == 6) {
	desc = ("Link: File Storage Page... \n\nA big collection of files on many topics. Feel free to browse, view, store and share. Member Share Folder!")
	}
	else if (num == 7) {
	desc = ("Link: D.C.S. Meetup Site... \n\nVisit our D.C.S. meetup.com website. Click on this link to visit: http://www.meetup.com/dukecitysports")
	}
	else {
	alert("You have an error in your code buddy!");
	}
	document.getElementById('textBox').value = (desc); //assigns a value to the outputBox texbox based on a match above
	}		

