
function random_banner(){
  var i=0;
  quote = new Array();
  person = new Array();
  extra = new Array();

  quote[0] = '<p>"The study group is important to me because studying so hard after 20 years out of school is very difficult, but doing this with other people in similar circumstances is easier. Coming every week to answer questionnaires makes me study the material assigned and provides the opportunity to discuss answers. The study group helps us stay organized and stick to the schedule each week. Resources are informative and provide extra knowledge on the various topics. The weekly quiz helps us determine how much we need to improve and encourages us to put in more effort."</p>';
  person[0] = "Delia Lombeida";
  extra[0] = "Internationally Educated Pharmacist (Ecuador)<br />Passed the Pharmacy Examining Board of Canada (PEBC) Evaluating Exam";
  quote[1] = '<p>"The PEBC study group highlights areas of study that have to be emphasized and the repeated reviews help us understand where we stand and what more has to be done."</p>';
  person[1] = "Diane Mathew Smith";
  extra[1] = "Internationally Educated Pharmacist (India)<br />Participant of Directions for Immigrants Pharmacy Examining Board of Canada (PEBC) Study Group";
  quote[2] = '<p>"The study group is helping me in developing my confidence. I am happy to be a part of these discussion sessions. I know that this will help me a lot in the process of obtaining licensure."</p>';
  person[2] = "Marjorie Albeza";
  extra[2] = "Internationally Educated Nurse (Austria)<br />Participant of Directions for Immigrants Canadian Registered Nurses Exam (CRNE) Study Group";
  quote[3] = '<p>"It is great to share ideas, knowledge and experiences with other internationally educated nurses and this is possible to do within the CRNE Study Group in which I am participating. You also stay motivated, a key element for the complex, time- consuming licensing process."</p>';
  person[3] = "Judith Torrefranca";
  extra[3] = "Internationally Educated Nurse (Philippines)<br />Participant of Directions for Immigrants Canadian Registered Nurses Exam (CRNE) Study Group";
  
  today = new Date();
  i=today.getSeconds();
  n=quote.length;
  //number=i-Math.round((i-1)/n)*n;
  number=Math.floor(Math.random()*4);
  
  return quote[number]+'<p><strong>'+person[number]+'</strong><br /><em style="font-size: 10px;">'+extra[number]+'</em></p>';
}

document.write('<div class="quote">');
document.write('<img src="/images/quote_top.gif" alt=" " width="" height="" />');
document.write(random_banner());
document.write('<img src="/images/quote_bottom.gif" alt=" " width="" height="" />');
document.write('</div>');

