// Added by Shay 10/05/06 - Calls random image and corresponding alt tag into pages throughout site

// Keep full url so script won't break for apps on secure.rd.net

var pic, alt; 
pic = new Array; 
pic[0] = "/images/Photo1.jpg"; 
pic[1] = "/images/Photo3.jpg"; 


alt = new Array; alt[0] = "Photo: Commission on Dietetic Registration"; 
alt[1] = "Photo: Commission on Dietetic Registration"; 


var now = new Date(); var seed = now.getTime() % 0xffffffff; function rand(n) {seed = (0x015a4e35 * seed) % 0x7fffffff; return ( seed >> 16 ) % n;}var num = rand(2);document.write("<img alt='" + alt[num] + "' name='main_image' src='" + pic[num] + "'width='320' height='129' border='0' >");
