/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 1;
quotes = Math.floor (num_of_quotes * Math.random());


if (quotes==0) {
body="\"Sticky Toffee Puddding - the daddy of puddings. Rich, moist and morish. Oh, and sticky...\" <a href='/desserts/sticky-toffee-pudding.html'>more...</a>";
}



document.write('<div>');
document.write(''+ body +'');
document.write('</div>');

