 var iLastIndex = -1;
        var arrList = null

		function clickAction(){
			if(!arrList)
				return;
				
			var iCurrentIndex = arrList.index(this);
			
			if(iLastIndex >= -1 && iLastIndex != iCurrentIndex){
				arrList.eq(iLastIndex).next().slideUp("normal");
			}
			arrList.eq(iCurrentIndex).next().slideToggle("normal");
			iLastIndex = iCurrentIndex;
		}
        $(document).ready(function() {

            arrList = $("h3.toggler");
            //alert(arrList.length);
            arrList.click(clickAction);
        });
