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';
	}
}