// FUNCTION showRandomPatientPhoto: write random patient story to document

function getRandomNumber()
{
    var randomNumber = Math.round(Math.random()*8);
    return randomNumber;
}

function showRandomPatientPhoto() {
    
    var getPhoto = getRandomNumber();

    var patientPhotos = new Array(10)
    patientPhotos[0] = "<p><img src='/images/patient1_small.jpg' width='190' height='190' border='0'></p>";
    patientPhotos[1] = "<p><img src='/images/patient2_small.jpg' width='190' height='190' border='0'></p>";
    patientPhotos[2] = "<p><img src='/images/patient3_small.jpg' width='190' height='190' border='0'></p>";
    patientPhotos[3] = "<p><img src='/images/patient4_small.jpg' width='190' height='190' border='0'></p>";
    patientPhotos[4] = "<p><img src='/images/patient5_small.jpg' width='190' height='190' border='0'></p>";
    patientPhotos[5] = "<p><img src='/images/patient6_small.jpg' width='190' height='190' border='0'></p>";
    patientPhotos[6] = "<p><img src='/images/patient7_small.jpg' width='190' height='190' border='0'></p>";
    patientPhotos[7] = "<p><img src='/images/patient8_small.jpg' width='190' height='190' border='0'></p>";
    patientPhotos[8] = "<p><img src='/images/patient9_small.jpg' width='190' height='190' border='0'></p>";
    patientPhotos[9] = "<p><img src='/images/patient10_small.jpg' width='190' height='190' border='0'></p>";

return patientPhotos[getPhoto]
}

// END FUNCTION showRandomPatientPhoto