var WhatsNew = new Array();
var WhatsNewIdx = -1;
var toffset = 2000

WhatsNew = [ 
   ["Welcome to the AIG Life web site.",
    "../home/index.asp",
	"whatsnew", false
   ]
   /*,
   ["AIG Life has developed a new software package to help IFAs achieve a suitable balance of risk and reward when building their client's investment portfolio. The Portfolio Planning System can be used to create a portfolio based on the investor's attitude to risk and the funds available from AIG Life.",
    "../general/ifa.asp",
	"whatsnew", true
   ],
   ["AIG Life Portfolio Planning System can be used to create a portfolio based on the investor's attitude to risk and the funds available from AIG Life.",
    "../general/ifa.asp",
	"whatsnew", true
   ], 
   ["New rates are now available for the GIB and PAB.",
    "../ifa/ifa_gibrate.asp",
	"whatsnew", true
   ]*/
]

function whatsnew() {
   WhatsNewIdx = ( ( WhatsNewIdx + 1 ) == WhatsNew.length ? 0 : ++WhatsNewIdx );
   if (bSecured || !WhatsNew[WhatsNewIdx][3] ) document.all.whatsnew.innerHTML = '<a class="'+WhatsNew[WhatsNewIdx][2]+'" href="'+WhatsNew[WhatsNewIdx][1]+'">'+WhatsNew[WhatsNewIdx][0]+'<\/a>'
   toffset = WhatsNew[WhatsNewIdx][0].length * 100
   timer = setTimeout('whatsnew()',toffset);
}