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