/**
* testimonials page
*/

$(function() {
    $('#testimonials-list a').click(function (e) {
        e.preventDefault();

        var imgUrl = this.href;
        var imgTitle = this.title;

        // preload
        var img = new Image();
        $(img).load(function () {
            console.log('image loaded, width: ' + img.width);

            $(img).dialog({
                bgiframe: true,
                modal: true,
                title: imgTitle,
                width: img.width ? img.width + 20 : 520,
                draggable: false,
                resizable: false,
                stack: false,
                buttons: {
                    Ok: function() {
                        $(this).dialog('close');
                    }
                }
            });

        }).error(function () {
            // notify the user that the image could not be loaded
        }).attr('src', imgUrl);



        return false;
    });


});