$(document).ready(function() {
        $(".test").hrzAccordion({
        eventTrigger        : "mouseover",
        openOnLoad                 : "1",
        cycle                        : false,
        fixedWidth                : "478",
        eventAction                : function(i){
                                                $("#eventRunning").html(" Opening - "+(i+1));
                                                 },
        completeAction        : function(i){
                                                $("#eventRunning").html(" Completed - "+(i+1));
                                                 }
        });
});
