
window.addEvent('domready', function() {
	

var url     = 'rss.php';

var myAjax = new Request({
	url:url,
	method: 'get',
	onRequest: function() {
		$('testimonialBody2').set('html', '<p id="testimonialText">Loading..</p>');
	},
	onComplete: function(responseText) { // no default update element, we do it manually
		$('testimonialBody2').set('html', responseText);
	}
}).send();
	

})
