/*URLs, src and alt for banners*/
var switchImage = new Array();
switchImage[0] = "http://www.telstra.com.au/banners/discover_bill_choices.gif";
switchImage[1] = "http://www.telstra.com.au/banners/questions_about_bill.gif";
var switchURL= new Array();
switchURL[0] = "https://telstra.com/myaccount/billingchoices.jsp?ti=TR-billing_choices-t.com-292x163";
switchURL[1] = "https://telstra.com/myaccount/helpinfo.jsp?ti=TR-billing_questions-t.com-292x163";
var switchAlt = new Array();
switchAlt[0] = "Discover your bill choices here";
switchAlt[1] = "Questions about your new look bill";
var curImage = Math.floor(Math.random()*switchImage.length);
/* Random Banner - randomises the switch banner */
function randomBanner() {
 document.getElementById('switchBanner').setAttribute('src', switchImage[curImage]);
 document.getElementById('switchLink').setAttribute('href', switchURL[curImage]);
 document.getElementById('switchLink').setAttribute('title', switchAlt[curImage]);
}
function randomBanner1() {
 document.getElementById('switchBanner1').setAttribute('src', switchImage1[curImage1]);
 document.getElementById('switchLink1').setAttribute('href', switchURL1[curImage1]);
 document.getElementById('switchLink1').setAttribute('title', switchAlt1[curImage1]);
}
var switchImage1 = new Array();
switchImage1[0] = "http://www.telstra.com.au/banners/back_to_it_156x95.gif";
switchImage1[1] = "http://www.telstra.com.au/homepage/images/stgs_156x95.gif";
var switchURL1 = new Array();
switchURL1[0] = "http://www.telstra.com.au/catalogue/back_to_it_feb09/index.html?ti=TR-jan09_cat-tcomoffers_156x95";
switchURL1[1] = "http://www.spreadthegoodstuff.com.au/?ti=TR-stgs_refresh-t.com_offers-156x95";
var switchAlt1 = new Array();
switchAlt1[0] = "Back to it - February 2009 catalogue";
switchAlt1[1] = "Everything you need for summer - Spread the Good Stuff";
var curImage1 = Math.floor(Math.random()*switchImage1.length);
