<!--
//edit the links as you would with regular html but remeber the '/" changes and follow the examples as a guide

var how_many_ads = 4;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) 
{
banner="jenveylogo.gif";
width="130";
height="35";
}
if (ad==2) 
{
banner="omexlogo.gif";
width="130";
height="35";
}
if (ad==3) 
{
banner="vrtlogo.gif";
width="130";
height="35";
}
if (ad==4) 
{
banner="customcageslogo.gif";
width="130";
height="35";
}


document.write('<center>');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('</center>');
//-->
