function showTestimonial(el){
	var index = Math.floor(Math.random()*limit);
	if(el != null){
		el.html(testimonials[index]);
	}
}

$(function(){	
	showTestimonial($(element));
});
