﻿var Team = {
    init: function() {
        $(function() {
            Team._init();
        });
    },

    _init: function() {


        $('#detailProfile').cycle({
            fx: 'fade',
            speed: 'slow',
            timeout: 0
        });

        $('#thumbProfile a').each(function(index) {
            $(this).click(function() {
                $('#detailProfile').cycle(index);
                return false;
            });
        });
    }
}
Team.init();
