rnd.today = new Date();
rnd.seed = rnd.today.getTime();
basehref = "http://www.keithjones.co.uk/";

function rnd() {
		rnd.seed = (rnd.seed * 9301 + 49297) % 233280;
		return rnd.seed / 233280.0;
};

function rand(number) {
	var result = Math.ceil(rnd() * number);
	if (!result) result++;
	return result;
};

var ad_cnt1 = 9;
var ad1 = rand(ad_cnt1);
var link1;
var adBanner1;
var width1 = "468";
var height1 = "60";

switch (ad1) {
	case 1:
		link1 = "../ebook.php";
		adBanner1 = basehref + "images/banners/ebooks.jpg";
		alt1 = "Check out the new Keith Jones E-book Store";
		break;

	case 2:
		link1 = "../shop/eshop/exec/shop.php?s=default&p=&pid=141&lid[1]=141&lid[0]=1";
		adBanner1 = basehref + "images/banners/giftvoucher.jpg";
		alt1 = "Keith Jones Gift Vouchers now available online";
		break;

	case 3:
		link1 = "../shop/eshop/exec/search.php?s=default&q=veggietales";
		adBanner1 = basehref + "images/banners/veggietales.jpg";
		alt1 = "They're Back! Veggie Tales now in stock";
		break;

	case 4:
		link1 = "../shop/eshop/exec/search.php?s=default&q=5019282315127";
		adBanner1 = basehref + "images/banners/loveshinethrough.jpg";
		alt1 = "Love Shine Through: the new album from Tim Hughes";
		break;

	case 5:
		link1 = "../shop/eshop/exec/shop.php?s=default&p=&pid=158&lid[2]=158&lid[1]=7&lid[0]=1";
		adBanner1 = basehref + "images/banners/niv2011.jpg";
		alt1 = "New International Version 2011 Edition";
		break;

	case 6:
		link1 = "../shop/eshop/exec/search.php?s=default&q=rickfords";
		adBanner1 = basehref + "images/banners/rhp.jpg";
		alt1 = "One Pound Classics";
		break;

	case 7:
		link1 = "../shop/eshop/exec/search.php?s=default&q=god+is+able+hillsong";
		adBanner1 = basehref + "images/banners/godisable.jpg";
		alt1 = "God is Able: New from Hillsong";
		break;

	case 8:
		link1 = "../shop/eshop/exec/search.php?s=default&q=5099996785324";
		adBanner1 = basehref + "images/banners/10000reasons.jpg";
		alt1 = "Matt Redman: 10,000 Reasons";
		break;

	case 9:
		link1 = "../shop/eshop/exec/shop.php?s=default&p=&pid=53&lid[3]=53&lid[2]=63&lid[1]=49&lid[0]=1";
		adBanner1 = basehref + "images/banners/easter2012.jpg";
		alt1 = "Books for Advent & Christmas";
		break;
}

document.write('<center><a href = "' + link1 + '" target = "_top">');
document.write('<img src = "' + adBanner1 + '" width = ' + width1 + ' height = ' + height1 + ' border = 0 alt = "' + alt1 + '"></a>');
document.write('</center>');

