<!--
var how_many_ads = 4;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
alt="The Company to Watch";
banner="/images/home/tag1.jpg";
width="374";
height="170";
}
if (ad==2) {
alt="Caribbean by Birth";
banner="/images/home/tag2.jpg";
width="374";
height="170";
}
if (ad==3) {
alt="The Place to Be, The Place to Invest";
banner="/images/home/tag3.jpg";
width="374";
height="170";
}
if (ad==4) {
alt="Socially Responsible";
banner="/images/home/tag4.jpg";
width="374";
height="170";
}
document.write('<right>');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('</right>');
// -->