function rotateFooterImage() {
var how_many_ads = 10;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
var banner = '/assets/images/global/hsi-footer.gif';
ad +=1;
if (ad==1) {
      banner="/assets/images/global/hsi-footer.gif";
}
if (ad==2) {
      banner="/assets/images/global/hsi-footer.gif";
}
if (ad==3) {
      banner="/assets/images/global/hsi-footer.gif";
}
if (ad==4) {
      banner="/assets/images/global/hsi-footer.gif";
}
if (ad==5) {
      banner="/assets/images/global/hsi-footer.gif";
}
if (ad==6) {
      banner="/assets/images/global/hsi-footer.gif";
}
if (ad==7) {
      banner="/assets/images/global/hsi-footer.gif";
}
if (ad==8) {
      banner="/assets/images/global/hsi-footer.gif";
}
if (ad==9) {
      banner="/assets/images/global/hsi-footer.gif";
}
if (ad==10) {
      banner="/assets/images/global/hsi-footer.gif";
}

return banner;


}