			// Set up the image files to be used.
			var theImages = new Array() 
			theImages[0] = 'img/people/asian-park.jpg'
			theImages[1] = 'img/people/standing-couple.jpg'
			theImages[2] = 'img/people/beach-couple.jpg'
			theImages[3] = 'img/people/beach-smiles.jpg'
			theImages[4] = 'img/people/black-couple.jpg'
			theImages[5] = 'img/people/couple-smiles.jpg'
			theImages[6] = 'img/people/happy-cuddle.jpg'
			theImages[7] = 'img/people/spanish-couple.jpg'
			
			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]
			}
			function showImage(){
				var whichImage = Math.floor(Math.random()*(p));
				document.write('<img src="'+theImages[whichImage]+'" width="120" border="0" vspace="20" hspace="20">');
			}
			function show2Images(){
				var img1 = Math.floor(Math.random()*(p));
				var img2 = Math.floor(Math.random()*(p));
				while ( img1 == img2 ) {
					img2 = Math.floor(Math.random()*(p));
					}
				document.write('<img src="'+theImages[img1]+'" width="120" border="0" vspace="20" hspace="20"><br>');
				document.write('<img src="'+theImages[img2]+'" width="120" border="0" vspace="20" hspace="20"><br>');
			}
			function showMainVideoLink(){
				var img1 = Math.floor(Math.random()*(p));
				var img2 = Math.floor(Math.random()*(p));
				while ( img1 == img2 ) {
					img2 = Math.floor(Math.random()*(p));
					}
				document.write('<img src="'+theImages[img1]+'" width="120" border="0" vspace="20" hspace="20"><br>');
                document.write('<a href="video/cc-video.html" class="video">Click here for a Video Preview of Couple Communication</a><br>')
				document.write('<img src="'+theImages[img2]+'" width="120" border="0" vspace="20" hspace="20"><br>');
			}
			function show2ImagesUp(){
				var img1 = Math.floor(Math.random()*(p));
				var img2 = Math.floor(Math.random()*(p));
				while ( img1 == img2 ) {
					img2 = Math.floor(Math.random()*(p));
					}
				document.write('<img src="../'+theImages[img1]+'" width="120" border="0" vspace="20" hspace="20"><br>');
				document.write('<img src="../'+theImages[img2]+'" width="120" border="0" vspace="20" hspace="20"><br>');
			}
