function carica(s) {
    $("#video").load('video_file.php?sel='+s);
    $("#commenti").load('video_commenti.php?sel='+s);
}


function side(indice) {
    if($("#m"+indice).css("height")=="0px") {
        side2big(indice);
    } else {
        side2small(indice);
    }
}

function side2big(indice) {
    $('#m'+indice++%5).animate({height: "150px"}, 1000);
    $('#m'+indice++%5).animate({height: "0px"}, 1000);
    $('#m'+indice++%5).animate({height: "0px"}, 1000);
    $('#m'+indice++%5).animate({height: "0px"}, 1000);
    $('#m'+indice++%5).animate({height: "0px"}, 1000);
}

function side2small(indice) {
    $('#m'+(indice)).animate({height: "0px"}, 1000);
}

