function sposta_c(indice,menuItem) {
        if(document.getElementById(indice).offsetTop < 200){
        document.getElementById(indice).style.top=document.getElementById(indice).offsetTop + 40 + 'px';
        //alert(document.getElementById(indice).offsetTop);
        setTimeout("sposta_c('"+indice+"','"+menuItem+"')", 1);
        }
        else{
          sposta(menuItem);     
        }
}
function torna_c(indice) {
        if(document.getElementById(indice).offsetTop > 40){
        document.getElementById(indice).style.top=document.getElementById(indice).offsetTop - 40 + 'px';
        //alert(document.getElementById(indice).offsetTop);
        setTimeout("torna_c('"+indice+"')", 1);
        }
}
function sposta(indice) {
  //clearTimeout(move_t_on);
        if(document.getElementById(indice).offsetTop < 40){
        document.getElementById(indice).style.top=document.getElementById(indice).offsetTop + 40 + 'px';
        //alert(document.getElementById(indice).offsetTop);
        setTimeout("sposta('"+indice+"')", 1);
        }
}
/*
function torna(indice) {
        if(document.getElementById(indice).offsetTop > -100){
        document.getElementById(indice).style.top=document.getElementById(indice).offsetTop - 20 + 'px';
        move_t_off=setTimeout("torna('"+indice+"')", 1);
        }
}
*/
function torna(indice) {
        if(document.getElementById(indice).offsetTop > -120){
        document.getElementById(indice).style.top=-120 + 'px';
        }
}

function sposta_admin(indice) {
        if(document.getElementById(indice).offsetTop < 0){
        document.getElementById(indice).style.top=document.getElementById(indice).offsetTop + 20 + 'px';
        setTimeout("sposta_admin('"+indice+"')", 1);
        }
}
function torna_admin(indice) {
        document.getElementById('username_login').value='';
        document.getElementById('password_login').value='';
        if(document.getElementById(indice).offsetTop > -140){
        document.getElementById(indice).style.top=document.getElementById(indice).offsetTop - 20 + 'px';
        setTimeout("torna_admin('"+indice+"')", 1);
        }
}
function scorri_left(){
  if(document.getElementById('menu_ul').offsetLeft > -940){
    document.getElementById('menu_ul').style.left=document.getElementById('menu_ul').offsetLeft - 48 + 'px';
    //alert(document.getElementById('menu').offsetLeft);
    setTimeout("scorri_left()", 1);
  }
}
function scorri_right(){
  if(document.getElementById('menu_ul').offsetLeft < 0){
    document.getElementById('menu_ul').style.left=document.getElementById('menu_ul').offsetLeft + 44 + 'px';
    //alert(document.getElementById('menu').offsetLeft);
    setTimeout("scorri_right()", 1);
  }
  else
  {
        document.getElementById('menu_ul').style.left = 0 + 'px';
  }
}


