// JavaScript Document
$(document).ready(function(){
$.ajax({
type: "GET",
url: "testimonials.xml",		
dataType: "xml",		
success: function(xml) {			
$(xml).find('testimonial').each(function(){				
var quote = $(this).find('quote').text();				
var person = $(this).find('person').text();				

$('<div class="testimonial"></div>')
.append('<p>'+quote+'</p>')				
.append('<p class="quoted">&mdash; '+person+'</p>')				
.appendTo('#testimonials')				
.fadeIn('slow');		
});		

$('#testimonials').cycle({fx:'scrollUp', speed:'600', timeout:10000, sync:1, random:1, slideExpr: 'div.testimonial', cleartypeNoBg:true});
}	
});
});

