function switchLocationTransaction(){
	var oLoc = document.getElementById('offresJourLoc');
	var oTrans = document.getElementById('offresJourTrans');
	var oVLoc = document.getElementById('viewLocation');
	var oVTrans = document.getElementById('viewTransaction');
	if (oLoc.className == 'tabitemOn'){
		oLoc.className = 'tabitemOff';
		oTrans.className = 'tabitemOn';
		oVLoc.className = 'location';
		oVTrans.className = 'transactioncurrent';
	}else{
		oLoc.className = 'tabitemOn';
		oTrans.className = 'tabitemOff';
		oVLoc.className = 'locationcurrent';
		oVTrans.className = 'transaction';
	}
	window.location.href="#contenu";
}

function viewOffre(oDiv,target){
	oTarget = document.getElementById(target);
	oTarget.innerHTML = oDiv.nextSibling.innerHTML;
	// window.location.href="#"+target;
	new Effect.Highlight(oTarget, {startcolor:'#004A90', endcolor:'#D1E1EE', duration : .4});
}