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