<!--
var NumberOfAds = 3;
var now = new Date()
var sec = now.getSeconds()
var AdNumber = sec % NumberOfAds;
AdNumber +=1;

if (AdNumber==1)

{

url="http://www.classictattoo.co.uk/";
Graphic="banners/allthegirls.gif";
width = "468"
height = "60"
}

if (AdNumber==2)

{

url="http://www.classictattoo.co.uk/";
Graphic="banners/credit.gif";
width = "468"
height = "60"

}

if (AdNumber==3)

{

url="http://www.classictattoo.co.uk/";
Graphic="banners/galleries.gif";
width = "468"
height = "60"

}

if (AdNumber==3)

document.write('<center>');
document.write('<a href=\"' + url + '\">');
document.write('<img src=\"' + Graphic + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('border=0><br>');
document.write('</a>');
document.write('</center>');
-->