<!--
// Please keep this header if you want to use the script.
// Developed by Observer 666 http://web-script.virtualave.net/
var speed=1
var pix=5
var position=-60
// Change the value=-60 when you add more banner ads or when you change the height of the banner. Example: height of banner is 60 pixels, position is -60
// the value must equal to the value of top: in the style sheets.
// You can only add the value in increment of 5 pixels, if not, the script ain't work.
if(document.all){
var Ads="advert.style.pixelTop"
}
else if(document.layers)
var Ads="document.layers.advert.top"
function showAd(){
if (eval(Ads+'==position')){
movedown();
}
else if(eval(Ads+'==0')){
moveup();
}
}
function moveup(){
if(eval(Ads+'!=position')){
eval(Ads+'-=5')
setTimeout("moveup()",speed)
}
}
function movedown(){
if(eval(Ads+'!=0')){
eval(Ads+'+=5')
setTimeout("movedown()",speed)
}
}
// -->
