$(document).ready(function(){
	$("#web_center").jqlink("http://projects.sevir.org",true);
	$("a").each(function(){
		document_base = "http://projects.sevir.org/";
	
		if (this.href.indexOf(document_base + "#")>= 0){
			this.href = document.location + this.href.substr(this.href.indexOf("#"),this.href.length);
		}
	});
});
