/* set_topics.js */

var url = './topics.dat';

var myAjax = new Ajax.Request(
	url, 
	{
		method: 'get',
        onComplete       : 
            function(response){
            	var h= $H(eval('('+response.responseText+')'));
            	
            	h.each(function(value){
					$(value.key).innerHTML = value.value;
            	});
            	
            }

	});
