var imageContainer = "#imageContainer"; // id of image container div

var imageSrc = new Array(
						 'skin_default/templateimages/prodCTA/5_11.jpg',
						 'skin_default/templateimages/prodCTA/blackhawk.jpg',
						 'skin_default/templateimages/prodCTA/eickhorn.jpg',
						 'skin_default/templateimages/prodCTA/mtm.jpg',
						 'skin_default/templateimages/prodCTA/spyderco.jpg',
						 'skin_default/templateimages/prodCTA/surefire.jpg'  // note no comma after last element of array
						 );

var imageAlt = new Array(
						 '5.11 Tactical',
						 'BlackHawk',
						 'Eickhorn',
						 'MTM',
						 'SpyderCo',
						 'SureFire'
						 );

var linkHref = new Array(
						 'prodtype.asp?s=8m6st57341&strParents=&CAT_ID=93&numRecordPosition=1',
						 'prodtype.asp?s=8m6st57341&strParents=&CAT_ID=90&numRecordPosition=1',
						 'prodtype.asp?s=8m6st57341&strParents=&CAT_ID=91&numRecordPosition=1',
						 'prodtype.asp?s=8m6st57341&strParents=&CAT_ID=97&numRecordPosition=1',
						 'prodtype.asp?s=4Ysfnf7350&strParents=&CAT_ID=92&numRecordPosition=1',
						 'prodtype.asp?s=8m6st57341&strParents=&CAT_ID=94&numRecordPosition=1'
						 );

var i = Math.floor(Math.random()*imageSrc.length);

var imageHtml = '<a href="' + linkHref[i] + '"><img src="' + imageSrc[i] + '" alt="' + imageAlt[i] + '" /></a>';

$(document).ready(function(){
	$(imageContainer).html(imageHtml);
});