ImageList = new Array(
	"Skip Navigation|/themes/"+title+"/arrow.gif",
	"Home Page|/themes/"+title+"/home.gif",
	"Font Size +/-|/themes/"+title+"/fontsize.gif",
	"Search|/themes/"+title+"/search.gif",
	"Veiw Help/FAQ|/themes/"+title+"/help.gif",
	"Swap Styles|/themes/"+title+"/styles.gif",
	"Log In|/themes/"+title+"/login.gif",
	"Log Out|/themes/"+title+"/login.gif",
	"Private Messages|/themes/"+title+"/pm.gif",
	"Member List|/themes/"+title+"/list.gif",
	"Edit Your Profile|/themes/"+title+"/profile.gif",
	"Members|/themes/"+title+"/list.gif",
	"User Control Panel|/themes/"+title+"/profile.gif"
  );


function replaceToolbarImages(){
	tools = document.getElementById('toolbar').getElementsByTagName('a');
	
	for(i=0;i<tools.length;i++){
		for(f=0;f<ImageList.length;f++){
			chunks=ImageList[f].split('|');
			thistool=tools[i];
			if(thistool.firstChild.nodeValue==chunks[0]){
				newImg=document.createElement('img');			
				newImg.setAttribute('alt',chunks[0]+' Button')
				/*newImg.setAttribute('title',chunks[0])*/
				newImg.setAttribute('src',siteRoot+chunks[1])
				// or newImg.src=chunks[1];
				thistool.replaceChild(newImg,thistool.firstChild)
			}
		}
	}
}
onload_functions.push('replaceToolbarImages()');

//replaceToolbarImages();