<!--
// original content taken from Nic's JavaScript Page with permission
// lack of these three lines will result in copyright infringment
// made by: Nic's JavaScript Page - http://www.javascript-page.com

var currentdate = 0;
var core = 0;

function initArray() {

this.length = initArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = initArray.arguments[i];
  }
}

link = new initArray(
"http://www.london-contacts.com/sexy-massage-kiss-kiss.html",
"http://www.london-contacts.com/massage-parlor-massage-therapy.html",
"http://www.london-contacts.com/massage-parlor-london-blondies.html",
"http://www.london-contacts.com/massage-parlor-katrinas-massage.html",
"http://www.london-contacts.com/massage-parlor-london-personal-academy.html",
"http://www.london-contacts.com/massage-parlor-lotus-massage.html",
"http://www.london-contacts.com/massage-parlor-marcia-pleasure-zone.html",
"http://www.london-contacts.com/massage-parlor-playmate-massage.html",
"http://www.london-contacts.com/massage-parlor-sinplicity-massage.html"
);

image = new initArray(
"http://www.london-contacts.com/images/massage-parlors/kiss-kiss/carmen.jpg",
"http://www.london-contacts.com/images/massage-parlors/massage-therapy/massage-therapy.jpg",
"http://www.london-contacts.com/images/massage-parlors/london-blondes/london-blondes.jpg",
"http://www.london-contacts.com/images/massage-parlors/katrinas-massage/katrinas-massage-gallery.jpg",
"http://www.london-contacts.com/images/massage-parlors/london-personal-academy/personal-academy-gallery.jpg",
"http://www.london-contacts.com/images/massage-parlors/lotus-massage/lotus-gallery.jpg",
"http://www.london-contacts.com/images/massage-parlors/marcia-pleasure-zone/pleasure-zone-gallery.jpg",
"http://www.london-contacts.com/images/massage-parlors/playmate-massage/playmate-masage-gallery.jpg",
"http://www.london-contacts.com/images/massage-parlors/sinplicity/sinplicity-gallery.jpg"
);

text = new initArray(
"Paddington Sexy Massage - KISS KISS MASSAGE",
"Clapham Junction Sexy Massage - GOOD MASSAGE THERAPY",
"Baker Street Sexy Massage - LONDON BLONDES",
"Central London Sexy Massage - KATRINA'S MASSAGE",
"Bond Street Sexy Massage - LONDON PERSONAL ACADEMY",
"Palmers Green Sexy Massage - LOTUS MASSAGE",
"King's Cross Sexy Massage - MARCIA PLEASURE ZONE",
"Victoria Sexy Massage - PLAYMATE MASSAGE",
"Essex Sexy Massage - SINPLICITY MASSAGE"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var ranlink  = link[core];
var ranimage = image[core];
var rantext  = text[core];

document.write('<a href=\"' +ranlink+ '\"><img src=\"'+ranimage+'\" border="0" width="103" height="145" alt=\"'+rantext+'\"></a>');

