/* ------------------------------------------------------------------------
 * photo-view.js
 * Copyright (c) Perfect Memorials. All rights reserved.
 * ------------------------------------------------------------------------ */

$(document).ready(function(){
    PMTCore.initAjax();
	PMTPhotoView.setEventHandlers();
    // Preload images
    PMTCore.preloadImages(
                            'thickbox/close.gif',
                            'thickbox/macFFBgHack.png',
                            'thickbox/spinner_50x50.gif'
                         );
});

var PMTPhotoView = {
    
    setEventHandlers: function(){
    	$('#link-add-caption').click(function(){
    	    PMTPhotoView.addCaption(this);
    	    return false;
    	});
    },
    
    addCaption: function(elmt){
        $('#photo-caption').removeClass('hide');
        $('#photo-caption-eip-helper').click();
        $(elmt).addClass('hide');
    },

    showAddCaptionLink: function(){
        $('#photo-caption').addClass('hide');
        $('#link-add-caption').removeClass('hide');
    },

    displayZoomIcon: function(elmt){},
    hideZoomIcon: function(elmt){}

};