﻿<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// 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.

theImages[0] = '/images/Magazines/mg2743_2icl.jpg'
theImages[1] = '/images/Magazines/mg2743_3icl.jpg'
theImages[2] = '/images/Magazines/mg2743_5icl.jpg'
theImages[3] = '/images/Magazines/mg2743_6icl.jpg'
theImages[4] = '/images/Magazines/mg2743_8icl.jpgf';
theImages[5] = '/images/Magazines/mg2743_10icl.jpg';
theImages[6] = '/images/Magazines/mg2743_11icl.jpg';
theImages[7] = '/images/Magazines/mg2743_12icl.jpg';
theImages[8] = '/images/Magazines/mg2743_13icl.jpg';
theImages[9] = '/images/Magazines/mg2743_14icl.jpg';
theImages[10] = '/images/Magazines/mg2743_15icl.jpg';
theImages[11] = '/images/Magazines/mg2743_16icl.jpg';
theImages[12] = '/images/Magazines/mg2743_17icl.jpg';
theImages[13] = '/images/Magazines/mg2743_18icl.jpg';
theImages[14] = '/images/Magazines/mg2743_19icl.jpg';
theImages[15] = '/images/Magazines/mg2743_20icl.jpg';
theImages[16] = '/images/Magazines/mg2743_22icl.jpg';
theImages[17] = '/images/Magazines/mg2743_23icl.jpg';
theImages[18] = '/images/Magazines/mg2743_24icl.jpg';
theImages[19] = '/images/Magazines/mg2743_25icl.jpg';
theImages[20] = '/images/Magazines/mg2743_26icl.jpg';
theImages[21] = '/images/Magazines/mg2743_27icl.jpg';
theImages[22] = '/images/Magazines/mg2743_28icl.jpg';
// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}
