// some variables;
var count = 0;
var image1 = new Array();
var image2 = new Array();

// array of matched images
image1[count] = "<img src='images2/home/intro_txt_about.gif' width='322' height='218' alt='About Us - American Crystal Sugar Company is a world-class agricultural cooperative that specializes in sugar and sugar-based products and by-products.'>"
image2[count] = "<img src='images2/home/intro_photo_about.jpg' width='324' height='218' alt='Introductory Photo'>"
count++

image1[count] = "<img src='images2/home/intro_txt_growing.gif' width='322' height='218' alt='Growing Beets - Progressive on-farm production methods coupled with the fertile soil of the Red River Valley make sugarbeets a leading regional crop.'>"
image2[count] = "<img src='images2/home/intro_photo_growing.jpg' width='324' height='218' alt='Introductory Photo'>"
count++

image1[count] = "<img src='images2/home/intro_txt_making.gif' width='322' height='218' alt='Making Sugar - Because of higher levels of efficiency, American Crystal ranks at or near the top of our industry in low cost beet sugar production.'>"
image2[count] = "<img src='images2/home/intro_photo_making.jpg' width='324' height='218' alt='Introductory Photo'>"
count++

image1[count] = "<img src='images2/home/intro_txt_tasting.gif' width='322' height='218' alt='Tasting Sweet - At 15 calories per teaspoon, our sugar is the pure sweetener you count on for great taste. It's also a naturally fat-free part of a healthy diet.'>"
image2[count] = "<img src='images2/home/intro_photo_tasting.jpg' width='324' height='218' alt='Introductory Photo'>"
count++

// pick one set of images randomly
var index = Math.floor(Math.random() * count);
