// <script>

// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header

// =======================================
// set the following variables
// =======================================

// Set speed (milliseconds)
var speed = 1000

// Specify the image files
var Pic = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = "sl_01/images/phone_p1.jpg"
Pic[1] = "sl_01/images/phone_p2.jpg"
Pic[2] = "sl_01/images/phone_p1.jpg"
Pic[3] = "sl_01/images/phone_p2.jpg"


// =======================================
// do not edit anything below this line
// =======================================

var t
var j = 0
var p = Pic.length

var preLoad = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}

function run_sl_01(){
   document.images.name_sl_01.src = preLoad[j].src
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('run_sl_01()', speed)
}

// </script>
