// JavaScript Document
var agandaRigthColSelected = ''

function initAgendaRightCol(rider){
	agandaRigthColSelected = rider
	selectAgendaRightCol(agandaRigthColSelected)
}

function selectAgendaRightCol(rider){
	if(rider == 'Kev'){
		desactiveBtnRightCol('Kev')
		activeBtnRightCol('Xav')
		agandaRigthColSelected = 'Kev'	
	}else if(rider == 'Xav'){
		activeBtnRightCol('Kev')
		desactiveBtnRightCol('Xav')
		agandaRigthColSelected = 'Xav'
	}
	loadHistoriqueAgenda(agandaRigthColSelected)
}

function activeBtnRightCol(rider){
	var btnAgenda = document.getElementById('btnAgendaRightColSelect'+rider);
	btnAgenda.src = 'images/rightCol_BtnAgenda'+rider+'.png'
	btnAgenda.onclick = function(){ selectAgendaRightCol(rider); }
	btnAgenda.onmouseover = function(){ this.src='images/rightCol_BtnAgenda'+rider+'Over.png'; }
	btnAgenda.onmouseout = function(){ this.src='images/rightCol_BtnAgenda'+rider+'.png'; }
	btnAgenda.style.cursor = 'pointer';		
}

function desactiveBtnRightCol(rider){
	var btnAgenda = document.getElementById('btnAgendaRightColSelect'+rider);
	btnAgenda.src = 'images/rightCol_BtnAgenda'+rider+'Select.png'
	btnAgenda.onclick = ''
	btnAgenda.onmouseover = ''
	btnAgenda.onmouseout = ''
	btnAgenda.style.cursor = 'default';	
}

function overAgenda(noeud){
	document.getElementById('corps_agenda_'+noeud).style.backgroundImage = 'url(images/rightCol_BkgLigneAgendaOver.png)'
	document.getElementById('vignette_agenda_'+noeud).style.backgroundColor = '#8d137c'
}

function outAgenda(noeud){
	document.getElementById('corps_agenda_'+noeud).style.backgroundImage = 'url(images/rightCol_BkgLigneAgenda.png)'
	document.getElementById('vignette_agenda_'+noeud).style.backgroundColor = '#575760'
}
