(function($) {
	$.fn.testimonialLoad = function(options) {
	
		var defaults = {}
		var options = $.extend(defaults, options);

		return this.each(function() {

			var obj = $(this);			

			$(".nextTestimonial").click(function(e) {
				e.preventDefault();
				$.ajax({
					type: "GET",
					url: "testimonial/nexttestimonials",
					cache: false,
					data: "next=true",
					success: function(html) {
						$("#testimonials").html(html);
					}
				});
			});
	
		});
	}
})(jQuery);