// JavaScript Document

//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays

images = new Array(2);

images[0] = "<a href = 'http://www.voicemobile.co.uk/billanalysis/'><img src='http://www.voicemobile.co.uk/wp-content/themes/version2/banners/bill.gif' border=0 alt='Talk to us about our Bill Analysis services' title='Talk to us about our Bill Analysis services'></a>";
images[1] = "<a href = 'http://www.voicemobile.co.uk/blackberry/'><img src='http://www.voicemobile.co.uk/wp-content/themes/version2/banners/blackberry.gif' border=0 alt='Blackberry: Email on the move!' title='Blackberry: Email on the move!'></a>";


index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done
