
var layerRef="null",layerStyleRef="null",styleSwitch="null";
var rightStopPoint="null";
var currRight=-800;
function init(){
if (navigator.appName == "Netscape") {
layerStyleRef="layer.";
layerRef="document.layers";
styleSwitch="";
rightStopPoint=50;
}else{
layerStyleRef="layer.style.";
layerRef="document.all";
styleSwitch=".style";
rightStopPoint="50px";
}
}
function moveLayerRight(layerName){
if (eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.left != rightStopPoint')){
currRight+=2;
eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.left = currRight');
setTimeout('moveLayerRight("'+layerName+'")',2);
}else{
currRight=-800;
eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.left = currRight');
setTimeout('moveLayerRight("'+layerName+'")',2);
}
}
//-->
</script>
<STYLE TYPE="text/css">
/*CREDITS LAYERS*/
#movingGhostR {POSITION: absolute; Z-INDEX: 100; VISIBILITY: visible; LEFT: -800; TOP: 40;}
</STYLE>

