﻿function ICG_AHTH_HideContent(idOfElement) {

    //do the magic
    listing = jQuery("#" + idOfElement);
    if (listing.hasClass('hideContent')) {
        //Currently hidden, show with jquery
        listing.show('slow').removeClass('hideContent');
    }
    else {
        //Show
        listing.hide('slow').addClass('hideContent');
    }
}