Downlinks = {
	act : null, 
	set : function(t) {
		if (Downlinks.act) {
			Downlinks.act.className = Downlinks.act.className.replace(/\bactive\b/, '');
		}
		t.className += ' active';
		Downlinks.act = t;
	}
};