var banners = new Array(

	'http://www.sports-insight.co.uk/adBanners/banner_top/hilly-banner_04.gif',

	'http://www.sports-insight.co.uk/adBanners/banner_top/gilbert-grey.jpg',

	'http://www.sports-insight.co.uk/adBanners/banner_top/asics.gif',

	'http://www.sports-insight.co.uk/adBanners/banner_top/coolmax.gif');

var linx = new Array(

	'http://www.hillyclothing.co.uk',

	'http://www.gilbertrugby.com',

	'http://www.asicsacademy.co.uk',

	'http://www.coolmaxfabric.com');

var old = 0;

var current = 0;



function init()

{

	if (!document.images) return

	while (current == old)

	{

		current = Math.floor(Math.random()*banners.length);

	}

	old = current;

	document.images['banner'].src = banners[current];

	setTimeout('init()',9000);

}



function sendPage()

{

	var newwin = window.open(linx[current],'_blank','');

}