




<!-- Hide from non-supporting browsers
if (document.images) {
	// Object Root
	
	root = "/RESOURCES/objects/membersToolbar/";
					
	// Left side items
	homeOff = new Image();
	homeOff.src = root+"imgToolbar/homeOff.gif";
	homeOn = new Image();
	homeOn.src = root+"imgToolbar/homeOn.gif"; 
			
	editprofileOff = new Image();
	editprofileOff.src = root+"imgToolbar/editprofileOff.gif";
	editprofileOn = new Image();
	editprofileOn.src = root+"imgToolbar/editprofileOn.gif"; 
			
	eventsOff = new Image();
	eventsOff.src = root+"imgToolbar/eventsOff.gif";
	eventsOn = new Image();
	eventsOn.src = root+"imgToolbar/eventsOn.gif"; 

	helpOff = new Image();
	helpOff.src = root+"imgToolbar/helpOff.gif";
	helpOn = new Image();
	helpOn.src = root+"imgToolbar/helpOn.gif"; 

	postphotoOff = new Image();
	postphotoOff.src = root+"imgToolbar/postphotoOff.gif";
	postphotoOn = new Image();
	postphotoOn.src = root+"imgToolbar/postphotoOn.gif"; 

	subscribeOff = new Image();
	subscribeOff.src = root+"imgToolbar/subscribeOff.gif";
	subscribeOn = new Image();
	subscribeOn.src = root+"imgToolbar/subscribeOn.gif"; 

	tellafriendOff = new Image();
	tellafriendOff.src = root+"imgToolbar/tellafriendOff.gif";
	tellafriendOn = new Image();
	tellafriendOn.src = root+"imgToolbar/tellafriendOn.gif"; 

	findmemberOff = new Image();
	findmemberOff.src = root+"imgToolbar/findmemberOff.gif";
	findmemberOn = new Image();
	findmemberOn.src = root+"imgToolbar/findmemberOn.gif"; 

	chatOff = new Image();
	chatOff.src = root+"imgToolbar/chatOff.gif";
	chatOn = new Image();
	chatOn.src = root+"imgToolbar/chatOn.gif"; 

	favoritesOff = new Image();
	favoritesOff.src = root+"imgToolbar/favoritesOff.gif";
	favoritesOn = new Image();
	favoritesOn.src = root+"imgToolbar/favoritesOn.gif"; 

	tipsOff = new Image();
	tipsOff.src = root+"imgToolbar/tipsOff.gif";
	tipsOn = new Image();
	tipsOn.src = root+"imgToolbar/tipsOn.gif"; 

	mailboxOff = new Image();
	mailboxOff.src = root+"imgToolbar/mailboxOff.gif";
	mailboxOn = new Image();
	mailboxOn.src = root+"imgToolbar/mailboxOn.gif"; 

	newmailOff = new Image();
	newmailOff.src = root+"imgToolbar/newmailOff.gif";
	newmailOn = new Image();
	newmailOn.src = root+"imgToolbar/newmailOn.gif"; 

	whosonOff = new Image();
	whosonOff.src = root+"imgToolbar/whosonOff.gif";
	whosonOn = new Image();
	whosonOn.src = root+"imgToolbar/whosonOn.gif"; 

	quickmatchOff = new Image();
	quickmatchOff.src = root+"imgToolbar/quickmatchOff.gif";
	quickmatchOn = new Image();
	quickmatchOn.src = root+"imgToolbar/quickmatchOn.gif"; 

	searchOff = new Image();
	searchOff.src = root+"imgToolbar/searchOff.gif";
	searchOn = new Image();
	searchOn.src = root+"imgToolbar/searchOn.gif"; 
}

function changeImages() {
	if (document.images) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
		}
	}
}

// Stop Hiding -->