// $Id: reseaux.js,v 1.1 2006/09/10 21:54:48 excellent Exp $
var reseaux = new Object();
reseaux.init = function() {
	reseaux.current = document.getElementById("frame-home");
}
reseaux.onload = (window.onload) ? window.onload : function () {};
window.onload = function () {reseaux.onload(); reseaux.init()};
reseaux.show = function(id) {
	var frame = document.getElementById("frame-" + id);
	if (frame) {
		if (this.current) {
			this.current.className = "bloc-aucun";
		}
		frame.className = "";
		this.current = frame;
	}
	return false;
}
