(function($){
	$.fn.myAccordion = function(option){
		// Parameetrid
		var param = jQuery.extend({
			speed: "fast", // low, medium, fast
			defautContent: 0 // number
		}, option);
		$(this).each(function() {
			// var
			var $this = this;
			var $thisId = this.id;
			// ID igale elemendile
			$("#"+$thisId+" .acctitle").attr("id", function(arr){
				return $thisId+"-elem"+arr;
			})
			// Peidan sisu
			$("#"+$thisId+" .acctitle").next(".acctext").hide();
			// Avan vaikesisu
			$("#"+$thisId+" #reasonsbox-elem"+option.defautContent).next(".acctext").show();
			// Valitud sisu avamine
			$("#"+$thisId+" .acctitle").click(function(){
				$("#"+$thisId+" .acctext").hide(option.speed);
				var contentCourant = $(this).attr("id");
				$("#"+$thisId+" #"+contentCourant).next(".acctext").show(option.speed);
			});
		});
	}
})(jQuery);
