function random_banner(){
  var i=0;
  quote = new Array();
  person = new Array();
  extra = new Array();

  quote[0] = '<p>"I have learned how to network and the essential elements of networking.  I also learned about the importance of follow-up after making a contact."</p><p>"Networking means connecting with people at anytime and anywhere."</p><p>"This workshop helped me develop more efficient communication skills that ultimately will enable me to get a job."</p>';
  person[0] = "Client Feedback on the How to Network workshop";
  extra[0] = "&nbsp;";
     
  quote[1] = '<p>"I learned more about the differences between the medical training program in my country of origin and Canada. This workshop helped me become more familiar with Canadian culture and showed me ways for better adaptation. I also learned about useful websites for job search in the medical field."</p>';
  person[1] = "Client Feedback on the Orientation for Health Care Professionals workshop";
  extra[1] = "&nbsp;";
  
  quote[2] = '<p>"If you are  looking for a professional position, this kind of workshop will help you build an efficient strategy and present you with a clear path of what you need to do to get a job as soon as possible, by providing you with more resources."</p><p>"This workshop gives professional immigrants a roadmap on how to move forward in this tough challenge of the job search. The guidance from my career coach will be helpful to reach the final destination."</p>';
  person[2] = "Client Feedback on the Orientation and Job Search Strategies workshop";
  extra[2] = "&nbsp;";
  
  quote[3] = '<p>"This workshop gives you tips on information interviewing and you learn about useful resources that will make your work search more effective".</p><p>"Through this workshop you can learn how to effectively approach potential employers".</p><p>"I learned how to contact the right person and conduct the right type of information interview".</p>';
  person[3] = "Client Feedback on the How to Information Interview within your Labour Market Sector workshop";
  extra[3] = "&nbsp;";
  
  quote[4] = '<p>"It provided me with information on how to behave in the work place, professionally and culturally as well as an overview of the rights and responsibilities for workers and employers in Alberta".</p><p>"Career coaches are enthusiastic, well-experienced and job-oriented. I have benefited a lot from them".</p><p>"This workshop helps you respond to these questions: What do employers expect? How to negotiate? How to create a win-win situation? and What are the myths of the hiring process?"</p><p>"I have learned about the rights and responsibilities of employees, what are the do\'s and don\'ts in the Canadian workplace".</p>';
  person[4] = "Client Feedback on the Successful Job Strategies workshop";
  extra[4] = "&nbsp;";
  
  quote[5] = '<p>"An industry networking session provides you with specific information on a company\'s culture requirements of hiring".<p><p>"I learned about the company\'s job openings, the interview process and the how to write a winning resume".</p>';
  person[5] = "Client Feedback on the Industry Information Sessions workshop";
  extra[5] = "&nbsp;";
  
  today = new Date();
  i=today.getSeconds();
  n=quote.length;
  //number=i-Math.round((i-1)/n)*n;
  number=Math.floor(Math.random()*6)
  
  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>');