<!--

Dietitians = new Array(12)
Titles = new Array(12)
Descriptions = new Array(12)
Links = new Array(12)

//dietitians
Dietitians[1]="Beth Armour"
Dietitians[2]="Pierrette Buklis"
Dietitians[3]="Linda Clark"
Dietitians[4]="St&eacute;phanie C&ocirc;t&eacute;"
Dietitians[5]="Paul-Guy Duhamel"
Dietitians[6]="Isabelle Giroux"
Dietitians[7]="Barbara Khouzam"
Dietitians[8]="Claude Leblanc"
Dietitians[9]="Marielle Ledoux"
Dietitians[10]="Linda Lehrer"
Dietitians[11]="Marie Marquis"
Dietitians[12]="Chantal Parent"

//titles
Titles[1]="M.Ed., Dt.P."
Titles[2]="MHSc, RD"
Titles[3]="Dt.P."
Titles[4]="M.Sc., Dt.P."
Titles[5]="Dt.P."
Titles[6]="Ph.D., RD"
Titles[7]="MPA, Dt.P."
Titles[8]=""
Titles[9]="Ph.D., Dt.P."
Titles[10]="Dt.P."
Titles[11]="Ph.D., Dt.P."
Titles[12]="M.Sc., Dt.P."

//descriptions
Descriptions[1]="Leader en &eacute;ducation de la nutrition"
Descriptions[2]="Leader dans l'industrie alimentaire"
Descriptions[3]="Leader en gestion des services alimentaires"
Descriptions[4]="Leader en communication de la nutrition"
Descriptions[5]="Leader en nutrition et affaires publiques"
Descriptions[6]="Leader en enseignement de la nutrition"
Descriptions[7]="Leader en enseignement de la nutrition"
Descriptions[8]="Leader &eacute;tudiant en nutrition"
Descriptions[9]="Leader en nutrition sportive"
Descriptions[10]="Leader en promotion de la sant&eacute; et de la nutrition"
Descriptions[11]="Leader en recherche de la nutrition"
Descriptions[12]="Leader en gestion des services alimentaires"

//links
Links[1]="Beth_Armour"
Links[2]="Pierrette_Buklis"
Links[3]="Linda_Clark"
Links[4]="Stephanie_Cote"
Links[5]="Paul_Guy_Duhamel"
Links[6]="Isabelle_Giroux"
Links[7]="Barbara_Khouzam"
Links[8]="Claude_Leblanc"
Links[9]="Marielle_Ledoux"
Links[10]="Linda_Lehrer"
Links[11]="Marie_Marquis"
Links[12]="Chantal_Parent"

//randomizer
rnd.today=new Date();
rnd.seed=rnd.today.getTime();

function rnd() { 
	rnd.seed = (rnd.seed*9301+49297) % 233280;
	return rnd.seed/(233280.0);
}

function rand(number) { 
	return Math.ceil(rnd()*number);
}; 

//display
var selectedPicture=rand(12);

if((Dietitians[selectedPicture] == 'Isabelle Giroux') ||
	(Dietitians[selectedPicture] == 'Pierrette Buklis') ||
	(Dietitians[selectedPicture] == 'St&eacute;phanie C&ocirc;t&eacute;') ||
	(Dietitians[selectedPicture] == 'Suzanne Galesloot') ||
	(Dietitians[selectedPicture] == 'Chantal Parent') ||
	(Dietitians[selectedPicture] == 'Marielle Ledoux') ||
	(Dietitians[selectedPicture] == 'Marie Marquis') ||
	(Dietitians[selectedPicture] == 'Beth Armour')) {

	document.write("<div id='bg_frame' style='height: 421px; background: url(/Vision2020/fr/images/utility/rotating_frame.gif) no-repeat; margin-top: 324px;'>" +
	"<a href='/Vision2020/fr/dietitians/" +
	Links[selectedPicture] +
	".asp' id='help_button' class='help_button'>" +	
	"<img id='dietitianImage' src='/Vision2020/fr/images/small/" +
	Dietitians[selectedPicture] +
	".jpg' border='0' style='margin-top: 48px; margin-right: 1px; margin-bottom: 5px;' /><br />" +
	"</a>" +
	"<div id='dietitianDescription' style='width: 135px;'>" +
	"<img src='/Vision2020/fr/images/utility/white_arrow.gif' style='padding-right: 3px; padding-bottom: 2px;' />" +
	"<strong style='color: white;'>" +
	Dietitians[selectedPicture] +
	"<br />" +
	Titles[selectedPicture] +
	"</strong>" +
	"<p style='line-height: 12px; font-size: 11px; margin-top: 0px;'>" +
	Descriptions[selectedPicture] +
	"</p>" +
	"</div>" +
	"</div>");
}
else {
	document.write("<div id='bg_frame' style='height: 421px; background: url(/Vision2020/fr/images/utility/rotating_frame.gif) no-repeat; margin-top: 324px;'>" +
		"<a href='/Vision2020/fr/dietitians/" +
		Links[selectedPicture] +
		".asp' id='help_button' class='help_button'>" +
		"<img id='dietitianImage' src='/Vision2020/fr/images/small/" +
		Dietitians[selectedPicture] +
		".jpg' border='0' style='margin-top: 48px; margin-right: 1px; margin-bottom: 5px;' /><br />" +
		"</a>" +
		"<div id='dietitianDescription' style='width: 135px;'>" +
		"<img src='/Vision2020/fr/images/utility/white_arrow.gif' style='padding-right: 3px; padding-bottom: 2px;' />" +
		"<strong style='color: white;'>" +
		Dietitians[selectedPicture] +
		"&nbsp;" +
		Titles[selectedPicture] +
		"</strong>" +
		"<p style='line-height: 12px; font-size: 11px; margin-top: 0px;'>" +
		Descriptions[selectedPicture] +
		"</p>" +
		"</div>" +
		"</div>");
}

//-->