var quotes=new Array();
quotes[0] = "John was born in Glasgow, Scotland.";
quotes[1] = "John is the youngest of 3.";
quotes[2] = "John has 1 brother and 1 sister.";
quotes[3] = "John hosted Live and Kicking with Emma Forbes and Andi Peters.";
quotes[4] = "John moved to America with family when he was just 8 years old.";
quotes[5] = "John was born on 11th March, 1967";
quotes[6] = "John's first big role was the lead part in 'Anything Goes' opposite Elaine Paige.";
quotes[7] = "John nearly became 'Will' in the hit US sitcom 'Will & Grace' but didn't get the part due to being 'too straight'.";
quotes[8] = "John has starred in 22 stage shows and 2 pantomimes (when written).";
quotes[9] = "John is best known for playing Captain Jack Harkness in the BBC TV series 'Doctor Who' and 'Torchwood'.";
quotes[10] = "John is civil-partnered to architect, Scott Gill.";

var q = quotes.length;
var whichquote=Math.round(Math.random()*(q-1));
function showquote(){document.write(quotes[whichquote]);}
showquote(); 

