var rand_pic = '1020';

function PadDigits(n, totalDigits) 
{ 
	n = n.toString(); 
    var pd = ''; 
    if (totalDigits > n.length) 
	{ 
	    for (i=0; i < (totalDigits-n.length); i++) 
	    { 
    		pd += '0'; 
        } 
    } 
    return pd + n.toString(); 
} 

rand_pic = PadDigits(1000+Math.floor(Math.random()*numstaff),4);

document.write("<P STYLE='text-align: center;'><B><SPAN STYLE='font-size: 10pt; color: rgb(51,153,0);'>Who\'s&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;this?&nbsp;&nbsp;&nbsp;<br/>");
document.write("<A id='montage_special' HREF='./html/summerstaff2011.html'><IMG src='./staff2011/stafflg");
document.write(rand_pic);
document.write(".jpg' width='80'></IMG><BR/><SPAN STYLE='font-size: 8pt;'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Meet the 2011<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Summer Staff!</SPAN></A></SPAN></B></P>");
