// JavaScript Document
function hilightTab(button) {
	
	if(button.className == "buttonTab") {
		button.style.backgroundColor='#6d8bfb';
	}
}

function unHilightTab(button) {
	if(button.className == "buttonTab") {
		button.style.backgroundColor='#4d6bdb';
	}
}

function shade(button) {
	button.style.backgroundColor='#ffffff';
}

function unshade(button) {
	button.style.backgroundColor='#eeeeff';
}