//select a reviewer quote at random
var thePictures = new makeArray(
'<img src="/images/photos/employee2.jpg" width="400" height="313" hspace="0" vspace="0" alt="I like working at FileMaker because..." border="0">',
'<img src="/images/photos/employee4.jpg" width="400" height="313" hspace="0" vspace="0" alt="I like working at FileMaker because..." border="0">',
'<img src="/images/photos/employee5.jpg" width="400" height="313" hspace="0" vspace="0" alt="I like working at FileMaker because..." border="0">',
'<img src="/images/photos/employee6.jpg" width="400" height="313" hspace="0" vspace="0" alt="I like working at FileMaker because..." border="0">',
'<img src="/images/photos/employee7.jpg" width="400" height="313" hspace="0" vspace="0" alt="I like working at FileMaker because..." border="0">');
function makeArray(){
this.length = makeArray.arguments.length
for (var i = 0; i < this.length; i++)
this[i + 1] = makeArray.arguments[i]
}
function randNum (num) {
var now = new Date();
var rand = Math.round(num * Math.cos(now.getTime()));
if (rand < 0) rand = - rand; if (rand == 0) rand++;
return rand;
}
