var colorClass = new Array('placeholder', 'yellowbar','orangebar', 'redbar', 'purplebar', 'aquabar', 'yellowbar');
//var colorImage = new Array('placeholeder', '/images_local/yellow_bar.gif', '/images_local/orange_bar.gif', '/images_local/red_bar.gif', '/images_local/purple_bar.gif', '/images_local/aqua_bar.gif', '/images_local/yellow_bar.gif');

var colorImage = new Array;
colorImage['Products'] = '/images_local/orange_bar.gif';
colorImage['Services'] = '/images_local/red_bar.gif';
colorImage['Communities'] = '/images_local/purple_bar.gif';
colorImage['Company'] = '/images_local/aqua_bar.gif';
colorImage['ThePowerofPresenceHome'] = '/images_local/yellow_bar.gif';

function ChangeBarColor(barcolor) {
	var thisbar = document.getElementById('colorbar');
	document.oldImage = thisbar.style.backgroundImage;
	//thisbar.class = colorClass[barcolor]; 
	var thisimage = 'url(' + colorImage[barcolor] + ')';
	thisbar.style.backgroundImage = thisimage;
	
}

function RestoreBarColor() {
	var thisbar = document.getElementById('colorbar');
	thisbar.style.backgroundImage = document.oldImage;
}
