// JavaScript Document

// Random Code

var randomitems = 11;
var bigNumber = Math.ceil(1000 * Math.random());
var randomNum = (bigNumber % randomitems) + 1;
var names = new Array(randomitems);
var desc = new Array(randomitems);
var image = new Array(randomitems);

// Exec Members Information
names[1] = 'Alida Hunt';
names[2] = 'Kevin Utley';
names[3] = 'Dorothy Stedman';
names[4] = 'Bettianne Szeider';
names[5] = 'Caroline Ralph';
names[6] = 'Lorelei Parsons';
names[7] = 'Amanda Baxter';
names[8] = 'Elayne Wardell';
names[9] = 'Ashley Ricker';
names[10] = 'Kataisha McQueen';
names[11] = 'Ralph Savage';

desc[1] = "Alida Hunt is the Treasurer on the GEDSBOT Executive.  She enjoys playing scrabble.";
desc[2] = "Kevin Utley is the President on the GEDSBOT Executive.  He took over from Ralph in 2010.";
desc[3] = "Dorothy Stedman is the health and safety person on the GEDSBOT Executive.  She is a proud Grandmother.";
desc[4] = "Bettianne Szeider is the Secretary on the GEDSBOT Executive.  Her hobbies include yoga, tai chi and she has 2 grandchildren";
desc[5] = "Caroline Ralph is responsible for constitution. She dotes on her new grandson, Evan.";
desc[6] = "Lorelei does an excellent job in political action. You can read her site on political action.";
desc[7] = "Amanda is our vice president and chair of status. She manages these jobs as well as looking after her 4 children.";
desc[8] = "Elayne is responsible for good will and makes sure we have lots to eat at the general meetings.";
desc[9] = "We welcome Ashley Ricker to the executive. She does a superb job of running professional learning workshops for the membership.";
desc[10] = "Katashia is the chair of the bargaining committee.";
desc[11] = "Ralph is the past president and the chief negotiator. He enjoys dancing in his spare time.";

image[1] = 'alidahunt.jpg';
image[2] = 'current-photo-of-president.jpg';
image[3] = 'dorothy.png';
image[4] = 'bettianne.png';
image[5] = 'Carolyn Ralph.png';
image[6] = 'lorelei2.jpg';
image[7] = 'amanda baxter small.jpg';
image[8] = 'elayne.jpg';
image[9] = 'ashley.jpg';
image[10] = 'KAITAISHA.jpg';
image[11] = 'ralphsavage.png';

document.write('<p><img SRC="/art/exec/' + image[randomNum] + '" alt="' + names[randomNum] + '" width="41" height="60" align="left">');
document.write('<b>' + names[randomNum] + '</b></p>');
document.write('<p>' + desc[randomNum] + '</p>');
// document.write('<p align="right"><a href="contacts.shtml" class="link-more">Other Executive Members<strong>&gt;&gt;</strong></a>');


