$(document).ready(function() {
    $(".vorteile_loewe").hide();

    $(".btn").click(function() {
        $(".vorteile_loewe").fadeIn("slow");
    });
    $(".vorteile_loewe").click(function() {
        $(".vorteile_loewe").fadeOut("slow");
    });

    $("input[name='bodyType']").change(GetCount);
})
