$(function() {
        var switches = $("#switches li.bullet");
        var slides = $("#testimonials > div");
        switches.each(function(idx) {
            $(this).data('testimonial', slides.eq(idx));
        }).click(function() {
            switches.removeClass("active");
            slides.removeClass("active");
            $(this).addClass("active");
            $(this).data("testimonial").addClass("active");
        }); 
    });
