// Slideshow 
start = function() {
setTimeout("quote1()",7000);
}

function quote1(){
document.getElementById('content').innerHTML = '<p>I have rarely heard my music interpreted with such great sensitivity</p><p id="caption">Paul Patterson, composer</p>';
setTimeout("quote2()",7000);
}

function quote2(){
document.getElementById('content').innerHTML = '<p>With Robin Page in charge, the music was illuminating and riveting by turns</p><p id="caption">Music and Musicians</p>';
setTimeout("quote3()",7000);
}

function quote3(){
document.getElementById('content').innerHTML = '<p>&#8230;an excellent conductor and a fine musician. I very much enjoy working with Robin</p><p id="caption">Rolf Wilson, leader<br />Royal Philharmonic Concert Orchestra</p>';
setTimeout("quote4()",7000);
}

function quote4(){
document.getElementById('content').innerHTML = '<p>This man is made of music</p><p id="caption">Sir Colin Davis</p>';
setTimeout("quote1()",7000);
}

window.onload=start;