
var swidth=235

var sheight=176

var sspeed=3


var imagef=''


//images: change to your own

var topimage=new Array();
topimage[0]='<img src="images/angola_1.jpg" width=235 height=176 border=0>'
topimage[1]='<img src="images/angola_p4.jpg" width=235 height=176 border=0>'
topimage[2]='<img src="images/angola_2.jpg" width=235 height=176 border=0>'
topimage[3]='<img src="images/angola_3.jpg" width=235 height=176 border=0>'
topimage[4]='<img src="images/angola_p3.jpg" width=235 height=176 border=0>'
topimage[5]='<img src="images/angola_4.jpg" width=235 height=176 border=0>'
topimage[6]='<img src="images/angola_p2.jpg" width=235 height=176 border=0>'
topimage[7]='<img src="images/angola_5.jpg" width=235 height=176 border=0>'
topimage[8]='<img src="images/angola_p1.jpg" width=235 height=176 border=0>'
topimage[9]='<img src="images/angola_6.jpg" width=235 height=176 border=0>'


for (mi=0;mi<topimage.length;mi++)
imagef=imagef+topimage[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.top-=thel
sslide()
}
function sslide(){
if (document.slider1.document.slider2.top>=thel*(-1)){
document.slider1.document.slider2.top-=sspeed
setTimeout("sslide()",100)
}
else{
document.slider1.document.slider2.top=swidth
sslide()
}
}
function initial6(whichdiv){
tdiv6=eval(whichdiv)
tdiv6.innerHTML=('<nobr>'+imagef+'</nobr>')
tdiv6.style.top=swidth
thel=swidth*topimage.length
scroll6()
}
function scroll6(){
if (parseInt(tdiv6.style.top)>=thel*(-1)){
tdiv6.style.top=parseInt(tdiv6.style.top)-sspeed
setTimeout("scroll6()",100)
}
else{
tdiv6.style.top=swidth
scroll6()
}
}
