var last_id = null;

function APonMouseOver (id)
{
	if (last_id != null) APonMouseOut (last_id);

	APChangeClass ("pointeur_"+id, "pointeur_on");
	
	last_id = id;
}

function APonMouseOut (id)
{
	APChangeClass ("pointeur_"+id, "pointeur_off");
}

