// Javascript code for random minisite ad on bottom left nav bar

// remember to ADD another image, increase the number by one where it says: images = new Array(3); 
// so that the number in brackets = total no. of images
// then add the line images[3] = ... so number increases and dont use DOUBLE quotes, just SINGLE quotes!

images = new Array(3);

images[0] = "<a href = 'http://www.dancewithchance.com' target='_blank'><img src='http://www.oneworld-publications.com/new%20imgs/minisite_ads/dance.jpg' width='135' height='100' alt='Visit Computer Hope'></a>";

images[1] = "<a href = 'http://www.susanblackmore.co.uk/Books/Tenzen/index.htm' target='_blank'><img src='http://www.oneworld-publications.com/new%20imgs/minisite_ads/tenzen.jpg' width='135' height='100' alt='Computer History'></a>";

images[2] = "<a href = 'http://www.claremulley.com/typo3/index.php?id=10' target='_blank'><img src='http://www.oneworld-publications.com/new%20imgs/minisite_ads/jebb.jpg' width='135' height='100' alt='Visit Computer Hope'></a>";

index = Math.floor(Math.random() * images.length);