Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.
// make two arrays
var img_one = new Array();
var img_two = new Array();
// populate the two arrays so that the contents sync up.
img_one[0] = 'leftone.jpg';
img_two[0] = 'rightone.jpg';
img_one[1] = 'lefttwo.jpg';
img_two[1] = 'righttwo.jpg';
// generate a random number limited by the number of options available.
var n=Math.floor(Math.random() * img_one.length);
// write out the left image.
document.write('<img src="'+img_one[n]+'" alt="left image" />');
// write out the right image.
document.write('<img src="'+img_two[n]+'" alt="right image" />');1 to 5 of 5