

function red(){

var randomnumber=Math.floor(Math.random()*5)
var skiquotes = new Array('Notice that the stiffest tree is most easily cracked, while the bamboo or willow survives by bending with the wind. ~ Bruce Lee (November 27, 1940 - July 20, 1973)' ,
'      &#34;Business has only two functions - marketing and innovation.&#34;', 
'&#34;If you only do what you know you can do- you never do very much.&#34;', 
"      &#34;Enthusiasm is excitement with inspiration, motivation, and a pinch of creativity.&#34;", 
"      &#34;There are no failures - just experiences and your reactions to them.&#34;");
var jerry  = document.write(skiquotes[randomnumber]);
return jerry;
}




