function setSrc(o, image) {
	o.src = '/fileadmin/user_upload/bilder/team/'+image;
}

function startRefShow() {
	var box = 'imageBox';
	var fI = $(box).firstDescendant();
	fI.style.display = 'inline';
}

function nextRef() {
	var box = 'imageBox';
	var imgDivs = $(box).childElements();
	var images = new Array();
	var nextId = 0;
	for(i=0;i<imgDivs.length;i++) {
		if(imgDivs[i].style.display == 'inline') {
			nextId = i+1;
			if(nextId == imgDivs.length) {
				nextId = 0;
			}
			imgDivs[i].style.display = 'none';
		}
	}
	imgDivs[nextId].style.display = 'inline';
}

function prevRef() {
	var box = 'imageBox';
	var imgDivs = $(box).childElements();
	var images = new Array();
	var nextId = 0;
	for(i=0;i<imgDivs.length;i++) {
		if(imgDivs[i].style.display == 'inline') {
			nextId = i-1;
			if(nextId < 0) {
				nextId = imgDivs.length - 1;
			}
			imgDivs[i].style.display = 'none';
		}
	}
	imgDivs[nextId].style.display = 'inline';
}

