﻿jQuery(function () {
    jQuery(".accLink").click(function (ev) {
        ev.preventDefault();

        closeAll(jQuery(this));

        var rel = jQuery(this).attr("rel");
        jQuery("#" + rel).slideDown();
    });

});

function closeAll(ob) {
    jQuery.each(jQuery(".divAcc"), function () {
        if (jQuery(this).attr("id") !== ob.attr("rel"))
            jQuery(this).slideUp();

    });
}
