

var ocapa = 
{
    topMargin  : 150,
    ceiling        : 50,
    desplazaTime  : 5000,
    capaDiv  : document.all ? document.all.capa : 
    (document.layers ? document.capa : document.getElementById('capa'))
}
window.setInterval("ocapa.coordenadas( )", 1)
ocapa.coordenadas = function( )
{
    if(document.all)
    {
        this.actualY = this.capaDiv.style.pixelTop;
        this.scrollTop = document.body.scrollTop;
    }
    else if(document.layers)
    {
        this.actualY = this.capaDiv.top;
        this.scrollTop = window.pageYOffset;
    }            
    else if(document.getElementById)
    {
        this.actualY = parseInt(this.capaDiv.style.top);
        this.scrollTop = window.pageYOffset;
    }      
    var nuevoScrollTop  = Math.max( this.scrollTop + this.topMargin, this.ceiling );
    if ( this.actualY != nuevoScrollTop ) 
    {
        if ( nuevoScrollTop != this.targetY ) 
        {
            this.targetY = nuevoScrollTop;
            this.desplazaInit( );
        }
        this.desplaza( );  
   }
}
ocapa.desplazaInit = function( )
{
    var ahora    = new Date( )    
    this.A     = this.targetY - this.actualY ;  
    this.B     = Math.PI / ( 2 * this.desplazaTime );     
    this.C     = ahora.getTime( );
    this.D     = this.actualY;
}
ocapa.desplaza = function( )
{
    var ahora    = new Date( );
    var nuevaY  = this.A * Math.sin( this.B * ( ahora.getTime( ) - this.C ) ) + this.D;
    nuevaY        = Math.round( nuevaY );
    if ( ( this.A > 0 && nuevaY > this.actualY ) ||  ( this.A < 0 && nuevaY < this.actualY ) ) 
    {
       if (document.all)
           this.capaDiv.style.pixelTop = nuevaY;
       else if(document.layers)
           this.capaDiv.top = nuevaY;
       else if(document.getElementById)
           this.capaDiv.style.top = nuevaY;               
    }
}




function msg_WStatus(n)
{
        this.length = n;
        for (i=0; i<n; i++) this[i]="";
}
stcnt = 20;
msg = "Club Cicloturista Obelisco-GRAN CANARIA";
wmsg = new msg_WStatus(40);
        wmsg[0]=msg;
		 blnk = "                                                               ";
        for (i=1; i<40; i++)
        {
                b = blnk.substring(0,i);
                for (j=0; j<msg.length; j++) wmsg[i]=wmsg[i]+msg.charAt(j)+b;
        }
function tempo()
{
        if (stcnt > -1) str = wmsg[stcnt]; else str = wmsg[0];
        if (stcnt-- < -50) stcnt=39;
        window.status = str;
        timeID = window.setTimeout("tempo()",50);
}
window.onload = tempo;



if (document.all){
document.write('<div id="starsDiv" style="position:absolute;top:0px;left:0px">')
for (xy=0;xy<7;xy++)
document.write('<div style="position:relative;width:2px;height:2px;background:#800040;font-size:1px;visibility:visible"></div>')
document.write('</div>')
}

if (document.layers)
{window.captureEvents(Event.MOUSEMOVE);}
var yBase = 200;
var xBase = 200;
var yAmpl = 10;
var yMax = 40;
var step = .2;
var ystep = .5;
var currStep = 0;
var tAmpl=1;
var Xpos = 1;
var Ypos = 1;
var i = 0;
var j = 0;

if (document.all)
{
  function MoveHandler(){
  Xpos = document.body.scrollLeft+event.x;
  Ypos = document.body.scrollTop+event.y;
  }
  document.onmousemove = MoveHandler; 
}

else if (document.layers)
{
  function xMoveHandler(evnt){
  Xpos = evnt.pageX;
  Ypos = evnt.pageY;
  }
  window.onMouseMove = xMoveHandler;
}



function animateLogo() {
if (document.all)
{
 yBase = window.document.body.offsetHeight/4;
 xBase = window.document.body.offsetWidth/4;
}
else if (document.layers)
{
 yBase = window.innerHeight/4 ;
 xBase = window.innerWidth/4;
}

if (document.all)
{
var totaldivs=document.all.starsDiv.all.length
 for ( i = 0 ; i < totaldivs ; i++ )
 {
var tempdiv=document.all.starsDiv.all[i].style
  tempdiv.top = Ypos + Math.cos((20*Math.sin(currStep/20))+i*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + i*25)/10);
  tempdiv.left = Xpos + Math.sin((20*Math.sin(currStep/20))+i*70)*xBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + i*25)/10);
 }
}

else if (document.layers)
{
 for ( j = 0 ; j < 7 ; j++ ) 
 {
var templayer="a"+j
  document.layers[templayer].top = Ypos + Math.cos((20*Math.sin(currStep/20))+j*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10);
  document.layers[templayer].left =Xpos + Math.sin((20*Math.sin(currStep/20))+j*70)*xBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10);
 }
}
currStep += step;
setTimeout("animateLogo()", 15);
}
animateLogo();




document.write("<img src=\"http://es.nedstat.net/cgi-bin/referstat.gif?"); 
document.write("name=clubobelisco&refer="); 
document.write(escape(document.referrer)); 
document.write("\" width=1 height=1 alt=\"\" align=\"right\">"); 