function roll(state, categorie)
{
    if ("autoturisme" == categorie) {
        if (true == state) {
            $("#show_more").toggle();
              $("#autoturisme").animate({
                  height: "530px"
              }, 1000 );
            $("#show_less").css('display', 'block');
        } else {
            $("#show_less").toggle();
              $("#autoturisme").animate({
                  height: "266px"
              }, 1000, "linear", function () {
                  $('#show_more').toggle();
              });
        }
    } else if ("utilitare" == categorie) {
        if (true == state) {
            $("#show_more_utilitare").toggle();
              $("#utilitare").animate({ 
                height: "270px"
              }, 1000 );
            $("#show_less_utilitare").css('display', 'block');
        } else {
            $("#show_less_utilitare").toggle();
              $("#utilitare").animate({ 
                height: "142px"
              }, 1000, "linear", function () {
                  $("#show_more_utilitare").toggle();
              });
        }
    }
}
