/*
var maskWidth = 438;
var moving = false;

function movebox(thisBox,oT,oL,maxColum){
    
    if(moving == false){
    
        moving = true;
        
        var currentLeft = $(thisBox).style.left;
        
        //currentLeft = currentLeft == "" ? "0px" : currentLeft;
        
        if(currentLeft != ""){
        
            var newL = currentLeft.substring(0,currentLeft.length - 2);
        
            newL = eval(newL);
        
        }else if(currentLeft == ""){
            
            newL = 0;
            
        }
        
        newL += oL;
        

        
        var boundLeft = 0;
        var boundRight = maskWidth - (maxColum * 146);
        //var boundRight = ( (maxColum*maskWidth) - maskWidth ) * -1

        if(newL > boundLeft || newL < boundRight ){
            moving = false;
        }else{
            //alert(newL);
            Effect.MoveBy(thisBox,oT,newL,{
                                          afterFinish:function(){
                                            moving = false;
                                          }
                                          });
        }
    
    }
    
}

function trace(some){
    alert(some);
}
*/