function f_getSondakika (container, type, direction) {
	container = getElement (container);
	if (!container) return ;
	System.f_clearTimer(container.id);
	if (!container.links) {
		container.links = System.f_getElements ("link", "class", container);
		if (container.links.length ==1) f_display (container.links[0], "block");
		if (container.links.length < 2) return ;
	}
	type = type ? type : "show";
	direction = direction ? direction : "next";
	if (type == "show") {
		if (isNType(container.current, "number")) container.current = 0;
		if (direction=="next") { 
			container.current ++;
			if (container.current > container.links.length - 1) container.current = 0;
		} else {
			container.current --;
			if (container.current < 0 ) container.current = container.links.length - 1;
		}
		f_setOpacity (container.links[container.current].id, 0, true, 100, 50, 20, false, "System.f_setTimer('" + container.id + "', 'f_getSondakika (\"" + container.id + "\", \"hide\", \"" + direction + "\");', 5000);");
		return ;
	}
	f_setOpacity (container.links[container.current].id, 100, false, 0, 50, 20, false, "System.f_setTimer('" + container.id + "', 'f_getSondakika (\"" + container.id + "\", \"show\", \"" + direction + "\");', 10);");
}