function updateTestimonial(){
	jQuery("#testim").slideUp("medium",function() {
		jQuery("#testim").load("modules/testimonials.asp?mode=ajax&rnd="+Math.random(),function() {
			jQuery("#testim").slideDown("medium");
		});
	});
}
jQuery(document).ready(function() {
	updateTestimonial();
});