// 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/contact-us/'><img src='http://www.voicemobile.co.uk/wp-content/themes/version2/banners/cross.gif' border=0 alt='Talk to us about our cross network deals!' title='Talk to us about our cross network deals!'></a>";
images[1] = "<a href = 'http://www.voicemobile.co.uk/about-us/testimonials/'><img src='http://www.voicemobile.co.uk/wp-content/themes/version2/banners/testimonials.gif' border=0 alt='Find out what our customers say!' title='Find out what our customers say!'></a>";


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

document.write(images[index]);

//done
