var currPos = 1;
var maxPos = 4;

function showNext() {
	var newPos = currPos+1;
	if(newPos > maxPos )
		newPos = 1;
	showById(newPos);
	return false;
}

function showById(id) {
	$('text'+currPos).hide();
	$('bild'+currPos).hide();
	currPos = id;
	$('text'+currPos).show();
	$('bild'+currPos).show();
	
	var html = '';
	$R(1, maxPos).each(function(p) {
		if(p == currPos) {
			html += '<span class="bild-nav-active">'+p+'</span> ';
		} else {
			html += '<a href="#" onclick="return showById('+p+');">'+p+'</a> ';
		}
	});
	$('projekt-bild-nav').innerHTML = html;
}
