// homepage random image


images = new Array(8);

images[0] = "<a href = '/buy/item/34' title='Circus equipment'><img src='/img/circusEquipment.jpg' alt='Give your loved ones gifts that help change the world'></a>";

images[1] = "<a href = '/buy/item/33' title='Football for children'><img src='/img/football.jpg' alt='Give your loved ones gifts that help change the world'></a>";

images[2] = "<a href = '/buy/item/30' title='Mosquito net for a family of five'><img src='/img/mosquitoNet.jpg' alt='Give your loved ones gifts that help change the world'></a>";

images[3] = "<a href = '/buy/item/35' title='Schoolbooks,fees and a uniform'><img src='/img/schoolbooksHIV.jpg' alt='Give your loved ones gifts that help change the world'></a>";

images[4] = "<a href = '/buy/item/31' title='Train a home-based carer'><img src='/img/train-A-carer.jpg' alt='Give your loved ones gifts that help change the world'></a>";

images[5] = "<a href = '/buy/item/36' title='A volunteer teacher'><img src='/img/volunteerTeacher.jpg' alt='Give your loved ones gifts that help change the world'></a>";

images[6] = "<a href = '/buy/item/37' title='Water purification training'><img src='/img/waterPurification.jpg' alt='Give your loved ones gifts that help change the world'></a>";

images[7] = "<a href = '/buy/item/32' title='Winter coats for children'><img src='/img/winterJackets.jpg' alt='Give your loved ones gifts that help change the world'></a>";

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

document.write(images[index]);

//done