// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.


//Link aanpassen naar deep-link product of zoekpagina + alt + title teksten aanpassen. Let op dit moet verschillend zijn.
theImages[0] = '<a href="http://avantisport.nl" title="Avantisport" alt="Avantisport"><img src="/banner/banner_basicv3.jpg"></a>'
theImages[1] = '<a href="http://www.avantisport.nl/products/dames/PolosDames/16/1/" alt="Falcon" title="Falcon"><img src="http://www.avantisport.nl/banner/FalconBanner.jpg"></a>'
theImages[2] = '<a href="http://www.avantisport.nl/products/heren/PolosHeren/16/1/" title="Gaastra" alt="Gaastra"><img src="http://www.avantisport.nl/banner/GaastraBanner.jpg"></a>';
theImages[3] = '<a href="http://avantisport.nl/products/search/?search=gaastra&b=brand&items=16&page=1" title="Gaastra" alt="Gaastra"><img src="http://www.avantisport.nl/banner/GaastraBannerJacks.jpg"></a>';
theImages[4] = '<a href="http://avantisport.nl/products/heren/SchoenenHeren/16/1/" title="Reebok" alt="Reebok"><img src="http://www.avantisport.nl/banner/ReebokBanner.jpg"></a>';

// do not edit anything below this line

var j = 0
var p = theImages.length;

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
	document.write(''+theImages[whichImage]+'');
}