/* (c) 2010 - Jean Luc BIELLMANN */

var _RessourcesSVG = {
	init : function () {
		new Ajax.Request('gpw/load.php?p=RessourcesSVG', {
			method: 'get',
			onSuccess: function(transport) {
				var json = transport.responseText.evalJSON();
				if (json.RessourcesSVG)
					$('RessourcesSVG').update(json.RessourcesSVG);
			}
		});
	}
};

