﻿function default_bind_elements() {
    $('.slideNav a').each(function () {
        $(this).click(function (e) {
            alert("dsf");
            var slideID = $(this).attr('rel');
            $('.slides li').hide();
            $('.slideNav li').removeClass('active');
            $(this).parent().addClass('active');
            $('.slide' + slideID).fadeIn('slow');
            e.preventDefault();
        });
    });
    showTestimonial();
    $('.slideNav a[rel="1"]').click();
}
function showTestimonial() {
    alert("dsf");
    if ($('.testimonial:visible"').length == 0) {
        $('.testimonial:first').show();
    } else {
        var next = $('.testimonial:visible').next('.testimonial:next');
        if (next.attr('id') == null) {
            next = $('.testimonial:first');
        }
        $('.testimonial:visible').hide();
        next.show();
    }
    setTimeout(showTestimonial, 10000);
}
