
imagesArray = new Array("http://selkierescue.com/images/graphics/3d2flogo.gif","http://selkierescue.com/images/graphics/softonic.jpg","http://selkierescue.com/images/graphics/TUCOWS.gif","http://selkierescue.com/images/graphics/swjlogo2.gif","http://selkierescue.com/images/graphics/infoworld_logo.jpg");
URLArray = new Array("http://www.3d2f.com",  "http://selkie-rescue-data-recovery.en.softonic.com/","http://www.tucows.com/article/1399","http://www.sharewarejunkies.com/08zwd03/selkie_rescue.htm","http://weblog.infoworld.com/stratdev/archives/2007/10/selkie_rescue.html");
ReviewTextArray = new Array("\"[Selkie Rescue] takes just a few minutes of time and a few pieces of equipment\"<br /><br />Click <a href='http://3d2f.com/smartreviews/1-047-selkie-rescue-data-recovery-wake-up-your-dead-computer-read.shtml'>here</a> to read the full review ","\"Once you have your magic [Selkie] Rescue disk, you\'re ready for anything. If your operating system crashes you simply reboot your machine and insert the CD into the drive.\"","\"There are so many things that can cause your computer to crash. Power outages, viruses, rootkits, a failing hard drive, a burned-out fan, and more. Sometimes the biggest problem is the ability to access the computer. Selkie Rescue eliminates that problem. It gives you nearly instant access to your machine.\"","\"...Now all that is left for you to do is to get those files off of the computer that you thought was unreachable and thank your lucky stars that you have Selkie Rescue.\"","Martin Heller, Strategic Developer:\"Very impressive. In fact, there was nothing wrong with that box: I had no trouble rebooting it to Windows NT, and seeing the same disks on the network. But it's still nice to know that I have an easy way to get at the data on any of my systems if they ever become unbootable.\"");

var curIndex= 0;
var imagecount = imagesArray.length;
  
function slideshow()
{
if (document.images)
{
 curIndex++;
 if (curIndex == imagecount)
 {
 curIndex = 0;
 }
 document.images["reviewImage"].src = imagesArray[curIndex];
 document.getElementById('reviewURL').href = URLArray[curIndex];
 document.getElementById('reviewText').innerHTML = ReviewTextArray[curIndex];
 setTimeout("slideshow()", 5000);   // 5000 = time in milliseconds
 }
 }