You need to be logged in as a user who has permission to view this site.
Log in
jQuery(document).ready(function($) {
if (typeof accordionMap !== "undefined") {
for (var accId in accordionMap) {
if (accordionMap.hasOwnProperty(accId)) {
var setup = accordionMap[accId];
$("#" + accId + " .ekit-accordion-header").on("click", function() {
var parent = $(this).parent();
var index = parent.index();
if (setup.images[index]) {
$(setup.target).attr("src", setup.images[index]);
}
});
}
}
}
});