
$(document).ready(function() {
  
		$(".test").hrzAccordion({eventTrigger			: "click",
							 openOnLoad					: "1",
							 cycle						: false,
							 fixedWidth					: "703",
							 hashPrefix  				: "tab",
							 handlePositionArray		: "left,left,left,left,left,left,left,left",
							 completeAction				: function(i){
															$("#eventRunning").html(" Completed - "+(i+2));
															}
							
							});

/*	$("#testHandle0").click(function(){
		$("#img1").show();	
		$("#img2").hide();
		$("#img3").hide();
		$("#img4").hide();
							  
							  });
		$("#testHandle1").click(function(){
		$("#img1").hide();	
		$("#img2").show();
		$("#img3").hide();
		$("#img4").hide();
							  
							  });
		$("#testHandle2").click(function(){
		$("#img1").hide();	
		$("#img2").hide();
		$("#img3").show();
		$("#img4").hide();
							  
							  });
		$("#testHandle3").click(function(){
		$("#img1").hide();	
		$("#img2").hide();
		$("#img3").hide();
		$("#img4").show();
							  
							  });
*/
 });

