// JavaScript Document
var swidth=130

//slider's height
var sheight=72

//slider's speed
var sspeed=2

//messages: change to your own; use as many as you'd like; set up Hyperlinks to URLs as you normally do: <a target=... href="... URL ...">..message..</a>
var singletext=new Array()
singletext[0]='<div align="center"><span class="scroll1"><span class="sale">HALF PRICE<br />SALE</span><br /> at<br /><span class="scroll">HTMLJunction</span><br /><span style="font-size: 20; font-weight: bold">!!!<span></span></div>'
singletext[1]='<div align="center"><span class="scroll1" style="font-weight: bold; color: #004200">Basic Plan<br /><span class="sale">$2.50 a month</span></span></div>'
singletext[2]='<div align="center"><span class="scroll1" style="font-weight: bold; color: #6b5218">Bronze Plan<br /><span class="sale">$5.00 a month</span></span></div>'
singletext[3]='<div align="center"><span class="scroll1" style="font-weight: bold; color: #949494">Silver Plan<br /><span class="sale">$10.00 a month</span></span></div>'
singletext[4]='<div align="center"><span class="scroll1" style="font-weight: bold; color: #ce9c00">Gold Plan<br /><span class="sale">$15.00 a month</span></span></div>'
singletext[5]='<div align="center"><span class="scroll1"><a class="first" style="text-decoration:underline" href="http://www.thegunnersgallery.com/forums/index.php?act=ST&f=2&t=21&s=3170b77237db958a206f17388790ecbf">Click Here!</a><br />For Details !!!</span></div>'
singletext[6]='<div align="center"><span class="scroll1">All Sale Plans<br />Still come with<Br />The Following</span></div>'
singletext[7]='<div align="center"><span class="scroll1">25\% discount on all items at<br /><a class="first" style="text-decoration:underline" href="http://www.thegunnersgallery.com">The Gunners Gallery</a></span></div>'
singletext[8]='<div align="center"><span class="scroll1">FREE<br />submittal to<br />100\'s<br />of top<br />search engines</span></div>'
singletext[9]='<div align="center"><span class="scroll1">FREE<br />Marketing tools<br />with full resell rights</span></div>'
singletext[10]='<div align="center"><span class="scroll1">PLUS<br /><br />Your own Start Page</span></div>'
singletext[11]='<div align="center"><span class="scroll1">AND<br /><br />Great support</span></div>'
if (singletext.length>1)
i=1
else
i=0
function start(){
if (document.all){
ieslider1.style.top=sheight
iemarquee(ieslider1)
}
else if (document.layers){
document.ns4slider.document.ns4slider1.top=sheight
document.ns4slider.document.ns4slider1.visibility='show'
ns4marquee(document.ns4slider.document.ns4slider1)
}
else if (document.getElementById&&!document.all){
document.getElementById('ns6slider1').style.top=sheight
ns6marquee(document.getElementById('ns6slider1'))
}
}
function iemarquee(whichdiv){
iediv=eval(whichdiv)
if (iediv.style.pixelTop>0&&iediv.style.pixelTop<=sspeed){
iediv.style.pixelTop=0
setTimeout("iemarquee(iediv)",150)
}
if (iediv.style.pixelTop>=sheight*-1){
iediv.style.pixelTop-=sspeed
setTimeout("iemarquee(iediv)",150)
}
else{
iediv.style.pixelTop=sheight
iediv.innerHTML=singletext[i]
if (i==singletext.length-1)
i=0
else
i++
}
}
function ns4marquee(whichlayer){
ns4layer=eval(whichlayer)
if (ns4layer.top>0&&ns4layer.top<=sspeed){
ns4layer.top=0
setTimeout("ns4marquee(ns4layer)",100)
}
if (ns4layer.top>=sheight*-1){
ns4layer.top-=sspeed
setTimeout("ns4marquee(ns4layer)",100)
}
else{
ns4layer.top=sheight
ns4layer.document.write(singletext[i])
ns4layer.document.close()
if (i==singletext.length-1)
i=0
else
i++
}
}
function ns6marquee(whichdiv){
ns6div=eval(whichdiv)
if (parseInt(ns6div.style.top)>0&&parseInt(ns6div.style.top)<=sspeed){
ns6div.style.top=0
setTimeout("ns6marquee(ns6div)",100)
}
if (parseInt(ns6div.style.top)>=sheight*-1){
ns6div.style.top=parseInt(ns6div.style.top)-sspeed
setTimeout("ns6marquee(ns6div)",100)
}
else{
ns6div.style.top=sheight
ns6div.innerHTML=singletext[i]
if (i==singletext.length-1)
i=0
else
i++
}
}