
function banniere() {

quotes = new Array(7);
authors = new Array(7);
business = new Array(7);

quotes[0] = "iGOvirtual's team worked <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;exceptionally well.";
authors[0] = "-Stéphane Lussier | Director of Finance";
business[0] = "Les Intérieurs BOUSADA Interiors";

quotes[1] = "iGOvirtual's service and <br>&nbsp;&nbsp;&nbsp;&nbsp;support is reliable and <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;very personalised.";
authors[1] = "-Stéphane Lussier | Director of Finance";
business[1] = "Les Intérieurs BOUSADA Interiors";

quotes[2] = "The support team is friendly <br>&nbsp;&nbsp;&nbsp;&nbsp;and knows who we are <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and what are needs are.";
authors[2] = "-Stéphane Lussier | Director of Finance";
business[2] = "Les Intérieurs BOUSADA Interiors";

quotes[3] = "The centralized server <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;permits us to work<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;from any location.";
authors[3] = "-Stéphane Lussier | Director of Finance";
business[3] = "Les Intérieurs BOUSADA Interiors";

quotes[4] = "iGOvirtual's services are very <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;professional and efficient.";
authors[4] = "-Carl Philippe";
business[4] = "Montreal Tractor Inc.";

quotes[5] = "The iGOvirtual™ service <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;has benefited our <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;company greatly.";
authors[5] = "-Carl Philippe";
business[5] = "Montreal Tractor Inc.";

quotes[6] = "The know-how and inventiveness that radiates from this Montreal based company is very inspiring.";
authors[6] = "-Eric Gales | Vice President SMS&P";
business[6] = "Microsoft Canada inc.";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<p class='cite'>&ldquo;" + quotes[index] + "&rdquo;");
document.write("<br><br>");
document.write("<span style='font-size:12px;line-height:12px;'>" + authors[index] + "</span>");
document.write("<br>");
document.write("<span style='font-size:12px;'>" + business[index] + "</span></p>");
}
