﻿var currentSelection = null;

function ChangeActive(active_a)
{

	if (currentSelection == active_a) {
		return;
	}
	lastSelection = currentSelection;
	currentSelection = active_a;
	

    currentSelection.className = "active";
	if(lastSelection)
		lastSelection.className = "";
	
}
