<!--
var pageId;

function showCurrent(){
var navTable = document.getElementById('nav');
var navlinks = navTable.getElementsByTagName('a');
	for(i=0; i<navlinks.length; i++){
		if(navlinks.item(i).id == docName()){
		pageId = navlinks.item(i).id;
		document[pageId].src = 'images/arrow_on.gif';
		navlinks.item(i).className = 'currpage';
		break;
		}
	}
}

function docName(){
wholeurl = window.location.href;
x = wholeurl.length;
while((wholeurl.substring(x,x-1)) != "."){
x--;
}
clipend = x;
while((wholeurl.substring(x,x-1)) != "/"){
x--;
}
clipstart = x;

var doc = wholeurl.substring(clipend-1,clipstart);
	if(doc.indexOf('pdartists') != -1){
	doc = 'index';
	}
	if(doc == 'apprenticereq'){
	doc = 'networking';
	}
	if(doc == 'infauxmation'){
	doc = 'networking';
	}
return doc;
}

// -->