// JavaScript Document

function observers(){
	$$('a.about').invoke('observe','click', function(event){
		if($(this.id + 'Content')){
			$('col_right').update($(this.id + 'Content').innerHTML);
		}
		event.stop();
	});
}
document.observe('dom:loaded', function(){ observers(); });