

function setNavigationClass(navId,action,currentNavId) {
	sl = navId + 1;
	sr = navId - 1;
	ac = navId;
	if(currentNavId != 0 || action != "new") {	
		if(currentNavId != navId  || action == 'new') {
			if(action == 'select' || action == 'new') {
				//alert(1);
				if(sl < 5 && sl != currentNavId) {
					//alert(2);
					document.getElementById('mainNav' + sl).className = 'tab'+ sl +'sl';
				}
				if(sr > 0 && sr < 4 && sr != currentNavId) {
					//alert(3);
					document.getElementById('mainNav' + sr).className = 'tab'+ sr +'sr';
				}	
				//alert(4);
				document.getElementById('mainNav' + ac).className = 'tab'+ ac +'aktief';
			} 
			if(action == 'deselect') {
				if(sl < 5 && sl != currentNavId) {
					document.getElementById('mainNav' + sl).className = 'tab'+ sl +'gew';
				}
				if(sr > 0 && sr < 4 && sr != currentNavId) {
					document.getElementById('mainNav' + sr).className = 'tab'+ sr +'gew';
				}	
				document.getElementById('mainNav' + ac).className = 'tab'+ ac +'gew';			
				
			}
		}
	}
}


function submitList() {
	$("connectcheck").submit();
}


