//slider's width
var swidth=102


//slider's height
var sheight=82

//slider's speed;
var sspeed=2


var imagef=''


//images: change to your own

var leftimage=new Array();
leftimage[0]='<img src="products/data/weapons/wlc/3--g105lfg.jpg" width=120 height=110 alt="" border=1>'
leftimage[1]='<img src="/products/data/weapons/wlc/2--G106RCL.jpg" width=120 height=110 border=1>'
leftimage[2]='<img src="/products/data/weapons/wmc/7-mgl.jpg" width=120 height=110 border=1>'
leftimage[3]='<img src="/products/data/weapons/wlc/1--G84rcl.jpg" width=120 height=110 border=1>'
leftimage[4]='<img src="/products/data/weapons/wmc/1--G12.7mm.jpg" width=120 height=110 border=1>'
leftimage[5]='<img src="/products/data/weapons/wmc/5--G40_170.jpg" width=120 height=110 border=1>'
leftimage[6]='<img src="/products/data/weapons/wmc/6_40mmupgun.jpg" width=120 height=110 border=1>'
leftimage[7]='<img src="/products/data/weapons/wme/3_m120mm.jpg" width=120 height=110 border=1>'
leftimage[8]='<img src="/products/data/weapons/wsc/11--Sa5.56rf.jpg" width=120 height=110 border=1>'
leftimage[9]='<img src="/products/data/weapons/wsc/17--Sa7.62mag.jpg" width=120 height=110 border=1>'
leftimage[10]='<img src="/products/data/weapons/wsc/24-CARBINE-5.56-MM-MINSAS.jpg" width=120 height=110 border=1>'
leftimage[11]='<img src="/products/data/weapons/wsc/23-RIFLE-EXCALIBUR-5.56MM.jpg" width=120 height=110 border=1>'
leftimage[12]='<img src="/products/data/weapons/wsc/7--Sa9pis.jpg" width=120 height=110 border=1>'
leftimage[13]='<img src="/products/data/military/5--veh_mmpv.jpg" width=120 height=110 border=1>'
leftimage[14]='<img src="/products/data/armoured/1--veh_t72.jpg" width=120 height=110 border=1>'
leftimage[15]='<img src="/products/data/armoured/2--veh_mbt.jpg" width=120 height=110 border=1>'
leftimage[16]='<img src="/products/data/armoured/3--veh_t90.jpg" width=120 height=110 border=1>'
leftimage[17]='<img src="/products/data/armoured/4--b_vch_sarath.jpg" width=120 height=110 border=1>'
leftimage[18]='<img src="/products/data/weapons/wsc/3_sa_32rev.jpg" width=120 height=110 border=1>'
leftimage[19]='<img src="/products/data/weapons/wsc/4_sa_32pis.jpg" width=120 height=110 border=1>'
leftimage[20]='<img src="/products/data/ammunition/sc/14a--cs.3006.jpg" width=120 height=110 border=1>'
leftimage[21]='<img src="/products/data/ammunition/rb/1--br68mmhe.jpg" width=120 height=110 border=1>'
leftimage[22]='<img src="/products/data/ammunition/rb/8--b450kg.jpg" width=120 height=110 border=1>'
leftimage[23]='<img src="/products/data/ammunition/rb/7--b250kg.jpg" width=120 height=110 border=1>'
leftimage[24]='<img src="/products/data/ammunition/rb/4--b1000lb.jpg" width=120 height=110 border=1>'
leftimage[25]='<img src="/products/data/ammunition/lc/36--cl155smkerfb.jpg" width=120 height=110 border=1>'
leftimage[26]='<img src="/products/data/ammunition/lc/15--cl105fsapds.jpg" width=120 height=110 border=1>'
leftimage[27]='<img src="/products/data/ammunition/lc/12--cl76.2_pfhe.jpg" width=120 height=110 border=1>'

for (mi=0;mi<leftimage.length;mi++)
imagef=imagef+leftimage[mi]


function start(){
if (document.all) return
if (document.getElementById){
document.getElementById("slider").style.visibility="show"
initial6(document.getElementById('slider'))
}
else if(document.layers){
document.slider1.visibility="show"
intialslide()
}
}
function intialslide(){
document.slider1.document.slider2.document.write('<nobr>'+imagef+'</nobr>')
document.slider1.document.slider2.document.close()
thel=document.slider1.document.slider2.document.width
document.slider1.document.slider2.left-=thel
sslide()
}
function sslide(){
if (document.slider1.document.slider2.left>=thel*(-1)){
document.slider1.document.slider2.left-=sspeed
setTimeout("sslide()",100)
}
else{
document.slider1.document.slider2.left=swidth
sslide()
}
}
function initial6(whichdiv){
tdiv6=eval(whichdiv)
tdiv6.innerHTML=('<nobr>'+imagef+'</nobr>')
tdiv6.style.left=swidth
thel=swidth*leftimage.length
scroll6()
}
function scroll6(){
if (parseInt(tdiv6.style.left)>=thel*(-1)){
tdiv6.style.left=parseInt(tdiv6.style.left)-sspeed
setTimeout("scroll6()",100)
}
else{
tdiv6.style.left=swidth
scroll6()
}
}
//You might run into a position problem within the page, using either
//NS4.x or NS6.x. To correct this use the coordinates: 'left=value',
//'top=value' within ilayer/layer tags or 'position:relative/absolute;
//left:value;top:value;' within NS6's div tags.
//Those values can be either positive or negative!
//Make sure you've got the onload='...;' within body tag but without
//takeFocus(); there!

