$(document).ready(function() {
  
	$(".test3").hrzAccordion({containerClass     	: "container3",
							  listItemClass      	: "listItem3",					
							  contentWrapper     	: "contentWrapper3",
							  contentInnerWrapper	: "contentInnerWrapper3",
						      handleClass        	: "handle3",
							  handleClassOver    	: "handleOver3",
							  handleClassSelected	: "handleSelected3"
							 });
});


		$(".handle3").click(function () {
			this.style.marginTop = (this.style.marginTop != "40px") ? "40px" : "-40px";
		});


