// (c) 2006 Jason Crosse for Blue Goose

var offers = [
  {img:'so_banking-extras.gif',href:'banking/index.htm',   alt:'Great Everyday Banking Extras'},
  {img:'so_borrowing.gif',     href:'borrowing/index.htm', alt:'A home, a holiday? Exclusive Borrowing'},
  {img:'so_protecting.gif',    href:'protecting/index.htm',alt:'Protecting You and Yours'},
  {img:'so_saving.gif',        href:'saving/index.htm',    alt:'It\'s never too early to start Saving'},
  {img:'so_travel.gif',        href:'travel/index.htm',    alt:'Check out exclusive Travel Services'},
  ];

function antaWriteOffer()
{
var n = offers.length;
var r = Math.floor(Math.random()*n);
r = (r==n)?n-1:r;
var str = '';
str += '<a href="';
str += offers[r].href;
str += '"><img src="images/';
str += offers[r].img;
str += '" alt="'+ offers[r].alt +'" title="'+ offers[r].alt +'"';
str += '" border="0" /></a>\n';
return document.write(str);
}