//Display random images with link

images1 = new Array(6);
images1[0] = "<a href='product/system-series/freedom-and-link.html'><img src='image/product/system-series/ezidea/ezidea-001-s.jpg' alt='Featured Product'></a>";
images1[1] = "<a href='product/system-series/freedom-and-link.html'><img src='image/product/system-series/ezidea/ezidea-002-s.jpg' alt='Featured Product'></a>";
images1[2] = "<a href='product/system-series/freedom-and-link.html'><img src='image/product/system-series/ezidea/ezidea-003-s.jpg' alt='Featured Product'></a>";
images1[3] = "<a href='product/system-series/freedom-and-link.html'><img src='image/product/system-series/ezidea/ezidea-004-s.jpg' alt='Featured Product'></a>";
images1[4] = "<a href='product/system-series/freedom-and-link.html'><img src='image/product/system-series/ezidea/ezidea-005-s.jpg' alt='Featured Product'></a>";
images1[5] = "<a href='product/system-series/freedom-and-link.html'><img src='image/product/system-series/ezidea/ezidea-006-s.jpg' alt='Featured Product'></a>";
index = Math.floor(Math.random() * images1.length);

function showRandomImage1(){
	document.write(images1[index]);
}

images2 = new Array(6);
images2[0] = "<a href='product/system-series/freedom-and-link.html'><img src='image/product/system-series/ezidea/ezidea-006-s.jpg' alt='Featured Product'></a>";
images2[1] = "<a href='product/system-series/freedom-and-link.html'><img src='image/product/system-series/ezidea/ezidea-005-s.jpg' alt='Featured Product'></a>";
images2[2] = "<a href='product/system-series/freedom-and-link.html'><img src='image/product/system-series/ezidea/ezidea-004-s.jpg' alt='Featured Product'></a>";
images2[3] = "<a href='product/system-series/freedom-and-link.html'><img src='image/product/system-series/ezidea/ezidea-003-s.jpg' alt='Featured Product'></a>";
images2[4] = "<a href='product/system-series/freedom-and-link.html'><img src='image/product/system-series/ezidea/ezidea-002-s.jpg' alt='Featured Product'></a>";
images2[5] = "<a href='product/system-series/freedom-and-link.html'><img src='image/product/system-series/ezidea/ezidea-001-s.jpg' alt='Featured Product'></a>";
index = Math.floor(Math.random() * images2.length);

function showRandomImage2(){
	document.write(images2[index]);
}

images3 = new Array(6);
images3[0] = "<a href='../../product/system-series/freedom-and-link.html'><img src='../../image/product/system-series/ezidea/ezidea-001-s.jpg' alt='Featured Product'></a>";
images3[1] = "<a href='../../product/system-series/freedom-and-link.html'><img src='../../image/product/system-series/ezidea/ezidea-002-s.jpg' alt='Featured Product'></a>";
images3[2] = "<a href='../../product/system-series/freedom-and-link.html'><img src='../../image/product/system-series/ezidea/ezidea-003-s.jpg' alt='Featured Product'></a>";
images3[3] = "<a href='../../product/system-series/freedom-and-link.html'><img src='../../image/product/system-series/ezidea/ezidea-004-s.jpg' alt='Featured Product'></a>";
images3[4] = "<a href='../../product/system-series/freedom-and-link.html'><img src='../../image/product/system-series/ezidea/ezidea-005-s.jpg' alt='Featured Product'></a>";
images3[5] = "<a href='../../product/system-series/freedom-and-link.html'><img src='../../image/product/system-series/ezidea/ezidea-006-s.jpg' alt='Featured Product'></a>";
index = Math.floor(Math.random() * images3.length);

function showRandomImage3(){
	document.write(images3[index]);
}

images4 = new Array(6);
images4[0] = "<a href='../../product/system-series/freedom-and-link.html'><img src='../../image/product/system-series/ezidea/ezidea-006-s.jpg' alt='Featured Product'></a>";
images4[1] = "<a href='../../product/system-series/freedom-and-link.html'><img src='../../image/product/system-series/ezidea/ezidea-005-s.jpg' alt='Featured Product'></a>";
images4[2] = "<a href='../../product/system-series/freedom-and-link.html'><img src='../../image/product/system-series/ezidea/ezidea-004-s.jpg' alt='Featured Product'></a>";
images4[3] = "<a href='../../product/system-series/freedom-and-link.html'><img src='../../image/product/system-series/ezidea/ezidea-003-s.jpg' alt='Featured Product'></a>";
images4[4] = "<a href='../../product/system-series/freedom-and-link.html'><img src='../../image/product/system-series/ezidea/ezidea-002-s.jpg' alt='Featured Product'></a>";
images4[5] = "<a href='../../product/system-series/freedom-and-link.html'><img src='../../image/product/system-series/ezidea/ezidea-001-s.jpg' alt='Featured Product'></a>";
index = Math.floor(Math.random() * images4.length);

function showRandomImage4(){
	document.write(images4[index]);
}

//done
