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

  quote[0] = '<p>"Jose Manuel Sanchez arrived in Calgary with twelve years of experience in his professional field. He found the advice he got from his career coach in adjusting his resume to meet the expectations of oil and gas employers in Alberta to be very useful. Jose also says his career coach provided him with resources for preparing for job interviews:  I had the opportunity to rehearse questions and answers that are typical of many job interviews. The way I present myself and the way I explain or demonstrate my professional achievements are crucial for getting a job."</p>';
  person[0] = "Jose Manuel Sanchez";
  extra[0] = "Internationally Educated Petroleum Engineer (Colombia)";
  quote[1] = '<p>"My career coach at Directions for Immigrants helped me a lot with the job interview   preparation. I was not aware of some key cultural aspects of the interview process. I       practiced with my career coach every single interview question I could."</p>';
  person[1] = "Yi-Chen Liao";
  extra[1] = "Yi-Chen Liao, internationally educated Computer Science professional. Former Directions\' client.";
  quote[2] = '<p>"When you think you are not getting good results with your job search, get in touch with your career coach. Career coaches will provide you with feedback. Then you can adjust and get back on the right track."</p>';
  person[2] = "Ahcene Denane";
  extra[2] = "Ahcene Denane, internationally educated Pipeline Technical Specialist and former Directions for Immigrants\' client.                ";
  
  today = new Date();
  i=today.getSeconds();
  n=quote.length;
  //number=i-Math.round((i-1)/n)*n;
  number=Math.floor(Math.random()*3);
  
  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>');


