var showed = false;
function showCategory(cId) {
    if (!showed) { $j('#cat'+cId).show("slow"); showed = true; }
    else if (showed) { $j('#cat'+cId).hide("slow"); showed = false; }
}
