// JavaScript Document
function  toup2(theobject){
logo=1
gogo(theobject)
}
function  todown2(theobject){
logo=0
down(theobject)
}
function gogo(image){
theobject=image
if  (logo==1&&theobject.filters.alpha.opacity<100){
theobject.filters.alpha.opacity+=20;
var upalpha=setTimeout("gogo(theobject)",300)
}
}
function down(theobject){
if (logo==0&&theobject.filters.alpha.opacity>80){
theobject.filters.alpha.opacity-=20;
var downalpha=setTimeout("down(theobject)",300)
}
}