<!-- Begin
var how_many_ads = 3;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
txt="National Geographic Kids";
url="animal-shop.html#NGK";
alt="National Geographic Kids";
banner="http://www.info-desk.co.za/images/magazines/NGK.jpg";
width="120";
height="160";
}
if (ad==2) {
txt="National Geographic Kids (Afrikaans)";
url="animal-shop.html#NGKA";
alt="National Geographic Kids (Afrikaans)";
banner="http://www.info-desk.co.za/images/magazines/NGKA.jpg";
width="120";
height="160";
}
if (ad==3) {
txt="National Geographic Little Kids";
url="animal-shop.html#NGLK";
alt="National Geographic Little Kids";
banner="http://www.info-desk.co.za/images/magazines/NGLK.jpg";
width="120";
height="160";
}
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="120"><tr><td>');
document.write('</td><td>');
document.write('<a href=\"' + url + '\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('<small><b>' + txt + '</b></small></a>');
document.write('</td></tr></table>');
// End -->

