

// Define the first image to appear in the slideshow in the *SMALL PICTURE AREA of the HTML code, ie: document.write('<IMG SRC="picts/first-pic.jpg" BORDER=0 ALT="" NAME="slide">'); [Sequential image rotaion script courtesy of SimplytheBest.net]/

gSlideshowInterval = 5;
gNumberOfImages = 7;

gImages = new Array(gNumberOfImages);
gImages[0] = "picts/dlt-ga.jpg";
gImages[1] = "picts/drive-test.jpg";
gImages[2] = "picts/testing.jpg";
gImages[3] = "picts/camcorder.gif";
gImages[4] = "picts/big-drive.jpg";
gImages[5] = "picts/pvw-2800.gif";
gImages[6] = "picts/mrl-tape.jpg";

function canManipulateImages() {
	if (document.images)
		return true;
	else
		return false;
}
function loadSlide(imageURL) {
	if (gImageCapableBrowser) {
		document.slide.src = imageURL;
		return false;
	}
	else {
		return true;
	}
}
function nextSlide() {
	gCurrentImage = (gCurrentImage + 1) % gNumberOfImages;
	loadSlide(gImages[gCurrentImage]);
}
gImageCapableBrowser = canManipulateImages();
gCurrentImage = 0;
setInterval("nextSlide()",gSlideshowInterval * 1000);


<!-- Begin

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS




var paragraph_1 	= "yes"		// SHOW THE 1ST PARAGRAPH
var paragraph_2 	= "yes"		// SHOW THE 2ND PARAGRAPH
var showimage		= "yes"		// SHOW A SIDEBAR IMAGE

var topspacing		= "10"		// NUDGE SIDEBAR DOWN
var sidewidth		= "125"		// SIDEBAR WIDTH





// NUDGE SPACER
document.write('<img src="picts/spacer.gif" height="'+topspacing+'" width="'+sidewidth+'"><br>');

document.write('<table cellpadding="5" cellspacing="10" border="0" class="sidebartext-right"><tr><td>');







// START RIGHT SIDEBAR AREA PARAGRAPH 1 EDIT THIS AREA

   if (paragraph_1 == "yes") {

document.write('<fieldset><legend>');

document.write('LTO & DLT Service<br></legend>');

document.write('Complete drive repairs &amp; head refurbishment are available. <a href="contact.htm">Contact us </a>today for more info.<br>');

document.write('</fieldset>');
document.write('<br><br>');

}
// END RIGHT SIDEBAR AREA PARAGRAPH 1







// SMALL PICTURE AREA*

   if (showimage == "yes") {

document.write('<img src="picts/dotclear.gif" width="1" height="10">');
document.write('<center>');
document.write('<IMG SRC="picts/dlt-ga.jpg" BORDER=0 ALT="" NAME="slide">');
document.write('</center>');
document.write('<img src="picts/dotclear.gif" width="1" height="25">');
}







// START RIGHT SIDEBAR AREA PARAGRAPH 2 EDIT THIS AREA

   if (paragraph_2 == "yes") {

document.write('<fieldset><legend>');

document.write('Camcorder Repair<br></legend>');

document.write('We provide parts and full service for Digital & HD camcorders. <a href="contact.htm">Call or email us</a> for pricing.<br>');

document.write('</fieldset>');
document.write('<br><br>');

}
// END RIGHT SIDEBAR AREA PARAGRAPH 2







document.write('</td></tr></table>');


// -- END -->
