    
     
function go(travel_here) {


var travel_width = 625; 
var travel_here = travel_here/1; 
travel_here = travel_here * travel_width; 


//where am I know? 
var im_here = 0; 
if(document.layers) {
        im_here = parent.the_top.pageXOffset;
            }
else if (document.all) {
        //im_here = window.the_top.body.scrollLeft;
          im_here = parent.the_top.document.body.scrollLeft
 
 }else{ 
     im_here = 0;    
     }
 
// how far do I have to go? 
 var go_this_far = travel_here - im_here; 
 var going_this_far = 0; 
 
 
if(go_this_far >=0){  


while(go_this_far >30){ 

 going_this_far = (go_this_far/30); 
  
  going_this_far = Math.round(going_this_far); 
  
 //alert(going_this_far); 
parent.the_top.scrollBy((going_this_far),0);

go_this_far = (go_this_far - going_this_far);

//setTimeout(parent.the_top.scrollBy(go_this_far,0),100); 
}
parent.the_top.scrollBy(5,0);

 
 }
 


else{ 




while(go_this_far < -30){ 

 going_this_far = go_this_far/30; 
   
   
   going_this_far = Math.round(going_this_far); 
   
   
parent.the_top.scrollBy(going_this_far,0);

go_this_far = go_this_far - going_this_far;
 //alert(going_this_far); 


}

parent.the_top.scrollBy(-5,0);


   

}

}

                                          
                                                                                             

