var banners = new Array(
	'images/bigpic1.jpg',
	'images/bigpic2.jpg',
	'images/bigpic3.jpg',
	'images/bigpic4.jpg',
	'images/bigpic5.jpg',
	'images/bigpic6.jpg',
	'images/bigpic7.jpg',
	'images/bigpic8.jpg',
	'images/bigpic9.jpg',
	'images/bigpic10.jpg',
	'images/bigpic11.jpg',
	'images/bigpic12.jpg');
var linx = new Array(
	'store/photos/vinevly.html',
	'store/photos/boathouses.html',
	'store/photos/cats.html',
	'store/photos/barnlake.html',
	'store/notecards/stalking.html',
	'store/photos/stormywalk.html',
	'store/notecards/mooseevest.html',
	'store/notecards/4thlake.html',
	'store/notecards/clearingsnow.html',
	'store/notecards/morningrun.html',
	'store/notecards/flowercat.html',
	'store/photos/cardinal.html');
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];
	document.getElementById('banner2').href= linx[current];
	setTimeout('init()',5000);
}
