﻿var photoListControl = function() {
    function setPhotoTooltip() {
        $('.profilePhoto').each(function(i) {
            var $content = $(this).next();

            $(this).ezpz_tooltip({
                contentId: $content.attr('id'),
                contentPosition: 'rightStatic',
                stayOnContent: true,
                offset: -5
            });
        });
    };

    return {
        init: function() {
            setPhotoTooltip();
        }
    };
} ();

$(photoListControl.init);
