Event.observe(window, 'load', function(){

	$$('#content_result_text a.resource').each(function(n){
	
		Event.observe(n, 'click', function(){
			$('res_overlay').show(); 
			$('resources').show();
		});
	
	});

});