var variableslide=new Array()

//variableslide[x]=["path to image", "OPTIONAL link for image", "OPTIONAL text description (supports HTML tags)"]

variableslide[0]=['', '', '<span class=slide_hdr>CUSTOMER FEEDBACK</span><br><br><span class=slide_txt>Our company prides itself on customer satisfaction, and we are honored by endorsements we have received from our customers.</span>']
variableslide[1]=['', '', '<span class=slide_hdr>ENGLISH-SPEAKING IT SUPPORT SPECIALISTS</span><br><br><span class=slide_txt>We provide our customers with qualified, professional IT service in English.</span>']
variableslide[2]=['', '', '<span class=slide_hdr>VENDOR-CERTIFIED SOLUTIONS</span><br><br><span class=slide_txt>Vendor competency approves our commitment, expertise and superiority using best IT products and services.</span>']
variableslide[3]=['', '', '<span class=slide_hdr>SLA-ORIENTED SERVICE</span><br><br><span class=slide_txt>Service Level Agreement base ensures essential quality standards of our IT service.</span>']
variableslide[3]=['', '', '<span class=slide_hdr>INCIDENT MANAGEMENT BASED ON ITIL</span><br><br><span class=slide_txt>Incident handling process satisfies the requirements of industry best practices.</span>']

//configure the below 3 variables to set the dimension/background color of the slideshow

var slidewidth='219px' //set to width of LARGEST image in your slideshow
var slideheight='165px' //set to height of LARGEST iamge in your slideshow, plus any text description

//configure the below variable to determine the delay between image rotations (in miliseconds)
var slidedelay=8000

////Do not edit pass this line////////////////

var ie=document.all
var dom=document.getElementById

for (i=0;i<variableslide.length;i++){
var cacheimage=new Image()
cacheimage.src=variableslide[i][0]
}

var currentslide=0

function rotateimages(){
contentcontainer='<center>'
if (variableslide[currentslide][1]!="")
contentcontainer+='<a h' + 'ref="'+variableslide[currentslide][1]+'">'
contentcontainer+=''
if (variableslide[currentslide][1]!="")
contentcontainer+='</a>'
contentcontainer+='</center>'
if (variableslide[currentslide][2]!="")
contentcontainer+=variableslide[currentslide][2]

if (document.layers){
crossrotateobj.document.write(contentcontainer)
crossrotateobj.document.close()
}
else if (ie||dom)
crossrotateobj.innerHTML=contentcontainer
if (currentslide==variableslide.length-1) currentslide=0
else currentslide++
setTimeout("rotateimages()",slidedelay)
}

if (ie||dom)
document.write('<div id="slidedom" style="width:'+slidewidth+';height:'+slideheight+'; padding-left:10px; padding-top:10px; padding-right:0px; padding-bottom:0px;"></div>')

function start_slider(){
crossrotateobj=dom? document.getElementById("slidedom") : ie? document.all.slidedom : document.slidensmain.document.slidenssub
if (document.layers)
document.slidensmain.visibility="show"
rotateimages()
}

if (ie||dom)
start_slider()
else if (document.layers)
window.onload=start_slider