var status = '';
$(document).ready(function() {
	$(".test").hrzAccordion({eventWaitForAnim : true, eventTrigger : "click",
			openOnLoad : "",
			cycle : false,
			eventAction : function(i){
			   if (status != '') { 
            // Cancel the event
            return false;
         } else {
            status = 'moving';
         }
			}, completeAction : function(i){
			   status = '';   
			}
			});	
});
