// random banner array


var random = new Array();

random[0]='<a href="products/service/customer_service/"><img src="resources/images/promotional/on_the_road_horizontal.jpg" alt="Redfox mobile will come to you, review your bills and develop a tailor made plan that is right for your business" width="291" height="131" border="0"/></a>';
random[1]='<a href="products/service/travelling_overseas"><img src="resources/images/promotional/global_roamer_horizontal.gif" alt="Are you a global roamer? Vodafone is the only choice for you! more..." width="291" height="131" border="0"/></a>';
random[2]='<a href="offers/pocket_wifi/"><img src="resources/images/promotional/pocket_wifi.jpg" alt="Pocket WiFi" width="291" height="131" border="0"/></a>';
random[3]='<a href="offers/shared_mobile_broadband/"><img src="resources/images/promotional/shared-mobile-broadband-small.gif" alt="The new Shared Mobile Broadband, wiht a FREE USB Modem!" width="291" height="131" border="0"/></a>';
random[4]='<a href="offers/infinite_plans/"><img src="resources/images/promotional/infinite.jpg" alt="Infinite Plans, now available" width="291" height="131" border="0"/></a>';
random[5]='<a href="offers/MMBbundles/"><img src="resources/images/promotional/MBBbundleSmall.gif" alt="Mobile Broadband Bundle Plans, now available" width="291" height="131" border="0"/></a>';
random[6]='<a href="offers/SharedBundles/"><img src="resources/images/promotional/SharedBundlesSmall.jpg" alt="Introducing Premium Infinite Shared Bundles, now available!" width="291" height="131" border="0"/></a>';
random[7]='<a href="offers/Landlines/"><img src="resources/images/promotional/landlines.jpg" alt="Introducing Redfox Landlines" width="291" height="131" border="0"/></a>';

var max = random.length;
var num = Math.floor((Math.random() * max));
var num2 = Math.floor((Math.random() * max));

while (num==num2)
  {
   num2 = Math.floor((Math.random() * max));
  }

document.write(random[num2] + ' ');
document.write(random[num]); 

