function showall() {
    $(".result2").css({
        "height": "55px",
        "overflow": "hidden"
    });
    $("#all" + this.id).css("height", "auto")
}

$(document).ready(function() {
    /*
    $(".ques").click(showall);
    $(".ques").mouseover(function() {
        $(this).css("color", "#F63")
    });
    $(".ques").mouseout(function() {
        $(this).css("color", "#11486b")
    })
    */
});