function showquote(){
 var quotes = ['a', 'b', 'c', 'd'];
 var q = quotes[Math.floor(Math.random()*quotes.length)]
 var code = '<style type="text/css">p.quote.' + q + ' { display:block; }</style>';
// alert(code)
 document.write(code);
 
}
