/* 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 = 3;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Partagez tous";
body="vos secrets ! ";
url="confess.html";
}

if (quotes==1) {
title="Passez vites";
body="aux aveux ! ";
url="confess.html";
}

if (quotes==2) {
title="Partagez tous";
body="vos secrets ! ";
url="confess.html";
}


document.write('<div align=left>');
document.write('<td width=\"107\" height=\"53\" background=\"img/button1.gif\"><div align=\"left\" class=\"ls_text\" style=\"margin-left:12px; margin-top:8px; margin-right:px; color:#C02825\"><strong>' + title + '</strong></div>');
document.write('<div align=\"left\" class=\"c_text\" style=\"margin-left:12px; margin-top:5px; margin-right:px\"><strong>'+ body +'</strong></div></td>');
document.write('<td><a href=\"'+ url +'\"><img src=\"img/button2.gif\" width=\"86\" height=\"53\" border=\"0\"></a></td>');

												
                                       