$(document).ready(function() {
$("#example9").zAccordion({
timeout: 8000,
speed: 6000,
tabWidth: "5%",
width: "70%",
height: "340",
animationStart: function () {
$("#animation span").html("Animation started...");
},
animationComplete: function () {
$("#animation span").html("Animation complete.");
}
});
});