//*************************************************************************************
//*************************************************************************************
//*  Index Javascript
//*************************************************************************************
//*************************************************************************************

function indexTab(tab){
	
	$("#indexWho").hide();
	$("#indexWhat").hide();
	$("#indexSuccess").hide();
	
	document.getElementById("indexButtonWho").style.backgroundColor = "#eeeeee";
	document.getElementById("indexButtonWhat").style.backgroundColor = "#eeeeee";
	document.getElementById("indexButtonSuccess").style.backgroundColor = "#eeeeee";
	
	$("#index"+tab+"").show();
	document.getElementById("indexButton"+tab+"").style.backgroundColor = "#dddddd";
	
	
}
