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

  quote[0] = '<p>"This workshop gives you tips on information interviewing and you learn about useful resources that will make your work search more effective."</p>';
  person[0] = "Client feedback on the How to Information Interview in your Labour Market Sector workshop";
  extra[0] = "";
  quote[1] = '<p>"Through this workshop you can learn how to effectively approach potential employers"</p>';
  person[1] = "Client feedback on the How to Information Interview in your Labour Market Sector workshop";
  extra[1] = "";
  quote[2] = '<p>"I learned how to contact the right person and conduct the right type of information interview"</p>';
  person[2] = "Client feedback on the How to Information Interview in your Labour Market Sector workshop";
  extra[2] = "";
  
  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>');

