function slide(id) {
    obj = document.getElementById(id);
    $(obj).slideToggle("normal");
}
        

