$(document).ready(function() {

 	function getContent(ID) { 
 	
		$.ajax({ 
    			//erweitere aufzurufenden Link 
    			url: "index.php?"+ID+"&type=101", 
    			dataType: "html",
    			//wenn es geklappt hat 
    			success: function(html) { 
        			//Inhalt reinschreiben und anzeigen 
        			$("#inner") 
            			.css("display", "none") 
            			.html(html) 
            			.fadeIn(); 
    			} 
		});

	}; 
	
	
 	$(".ajax3").hrzAccordion({
 			handlePosition		: "left",
 			containerClass		: "ajax_head", 
			openOnLoad		: "1",
			listItemClass		: "listItem3",					
			fixedWidth		: "712",
			contentWrapper		: "contentWrapper3",
			contentInnerWrapper	: "contentInnerWrapper3",
			handleClass		: "handle3",
			handleClassOver		: "handleOver3",
			handleClassSelected	: "handleSelected3"
	});
	
	
	
	// CLICK EVENTS STAT. IMPLEMENTATION
	/* ToDo
		in 20 = HMENU
	*/
	
	$("#ajax3Handle0").click(function() { 
 		ID = 13;
  		getContent(ID);
  		return false; 
	});
	$("#ajax3Handle1").click(function() { 
 		ID = 14;
  		getContent(ID);
  		return false; 
	});
	$("#ajax3Handle2").click(function() { 
 		ID = 15;
  		getContent(ID);
  		return false; 
	});		
	$("#ajax3Handle3").click(function() { 
 		ID = 16;
  		getContent(ID);
  		return false; 
	});

		
});