// examples: var pres assembles a mailto line from the following:
//                   var presAdd assembles a the president's email address
//                   var presName is the person's real name
//                   var presUserid is the userid of the email address
//                   var presDomain is the domain part of the email address
//                   var href is the prefix html code that begins the active tag
//                   var enda is the suffix html code that closes the active tag
// put this in the header: <script src="occmail.js"></script>
var href = "<a href=\"mai" + "lto:";
var close = "?subject=Orrville Cycling Club Question\">"
var enda = "</a>";

// PRESIDENT
var presName = "Tim Gilbert";
var presUserid = "batman";
var presDomain = "wadsnet.com";
var presPhone = "330-388-8213";
var presAdd = (presUserid + '@' + presDomain);
var pres = (href + presAdd + close + presName + enda);
// VICE PRESIDENT
var vpName = "Michael Gorman";
var vpUserid = "3309046919";
var vpDomain = "vtext.com";
var vpPhone = "330-904-6919 " 
var vpAdd = (vpUserid + '@' + vpDomain);
var vp = (href + vpAdd + close + vpName + enda);
// TREASURER
var treasName = "Rich Corfman";
var treasUserid = "rc27bike";
var treasDomain = "zoominternet.net";
var treasPhone = "330-683-4393";
var treasAdd = (treasUserid + '@' + treasDomain);
var treas = (href + treasAdd + close + treasName + enda);
// SECRETARY
var secName = "Aaron Holmes"; 
var secUserid = "aaron";
var secDomain = "aakt.com";
var secPhone = "330-749-4159";
var secAdd = (secUserid + '@' + secDomain);
var sec = (href + secAdd + close + secName + enda);
// WEB MASTER
var webName = "Tom Ozbolt";
var webUserid = "tozbolt";
var webDomain = "wadsnet.com";
var webPhone = "330-336-3240";
var webAdd = (webUserid + '@' + webDomain);
var web = (href + webAdd + close + webName + enda);
// MTB Board
var mtbName = "Mark Jones";
var mtbUserid = "norjones";
var mtbDomain = "sssnet.com";
var mtbPhone = "330-317-9637";
var mtbAdd = (mtbUserid + '@' + mtbDomain);
var mtb = (href + mtbAdd + close + mtbName + enda);
//Race Board
var raceName = "Mike Chapman";
var raceUserid = "mike";
var raceDomain = "chapmanplace.net";
var racePhone = "614-595-9543";
var raceAdd = (raceUserid + '@' + raceDomain);
var race = (href + raceAdd + close + raceName + enda);
//Touring1 Board
var tour1Name = "Owen James";
var tour1Userid = "ojames1963";
var tour1Domain = "gmail.com";
var tour1Phone = "330-";
var tour1Add = (tour1Userid + '@' + tour1Domain);
var tour1 = (href + tour1Add + close + tour1Name + enda);
//Touring2 Board
var tour2Name = "Dominic Calvarese";
var tour2Userid = "dcalvarese";
var tour2Domain = "sbcgloval.net";
var tour2Phone = "330-697-1746";
var tour2Add = (tour2Userid + '@' + tour2Domain);
var tour2 = (href + tour2Add + close + tour2Name + enda);
//Cyclo-Cross Board
var crossName = "Keith Feeman";
var crossUserid = "keith1759";
var crossDomain = "aol.com";
var crossPhone = "330-641-2070";
var crossAdd = (crossUserid + '@' + crossDomain);
var cross = (href + crossAdd + close + crossName + enda);
//CONTACT US
var contactusName = "Send us an email";
var contactusUserid = "contactus";
var contactusDomain = "orrvillecycling.com";
var contactusPhone = "";
var contactusAdd = (contactusUserid + '@' + contactusDomain);
var contactus = (href + contactusAdd + close + contactusName + enda);

var staff = (href + presAdd + '\,' + vpAdd + '\,' + secAdd + '\,' + treasAdd + '\,' + webAdd + '\,' + mtbAdd +  '\,' + raceAdd + '\,' + tour1Add + '\,' + tour2Add + '\,' + crossAdd + '\,' + close + 'All OCC Staff' + enda) 