<!--
var r_text = new Array ();
r_text[0] = "romance";
r_text[1] = "affair";
r_text[2] = "amour";
r_text[3] = "attachment";
r_text[4] = "courtship";
r_text[5] = "enchantment";
r_text[6] = "fascination";
r_text[7] = "fling";
r_text[8] = "flirtation";
r_text[9] = "intrigue";
r_text[10] = "liaison";


var i = Math.floor(11*Math.random())

document.write(r_text[i]);

//-->

