

function random(number) {
    return Math.floor(Math.random() * number);
}

function afficheNumero(idNumero) {
    $('#' + idNumero).slideToggle("normal");
}

$(window).ready(function() {
    var contenuHasard = articlesHasard[random(articlesHasard.length)];
    $('#hasard').append(contenuHasard);
//    $('#tableGenerale').height(Math.max(400,$('#tableGenerale').height()));
});
