function quotes(thisPage) {

images = new Array(3);

images[0] = "\“<i>If we could build the world of tomorrow, then we’d want this guy to be one of the architects…</i>\”<br><b>Kate Bezar – founder and editor, <i>Dumbo Feather, Pass it On</i></b>";

images[1] = "\“<i>If we could build the world of tomorrow, then we’d want this guy to be one of the architects…</i>\”<br><b>Kate Bezar – founder and editor, <i>Dumbo Feather, Pass it On</i></b>";

images[2] = "\“<i>If we could build the world of tomorrow, then we’d want this guy to be one of the architects…</i>\”<br><b>Kate Bezar – founder and editor, <i>Dumbo Feather, Pass it On</i></b>";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);

}
