var doAjax = {
	
	// target: element id
	// source: source file path
	replace: function(target, source) {
		new Ajax(source, {
		update: target,
		evalScripts: true
		}).request();
	}

}
