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

$(document).ready(function(){
    PMTCore.initAjax();
    PMTPhotos.setEventHandlers();
});

var PMTPhotos = {
    
    setEventHandlers: function(){
    	$('form.delete-photo').submit(function(){
    	    return PMTPhotos.deletePhoto();
    	});
    	$('form.delete-comment').submit(function(){
    	    return PMTPhotos.deleteComment();
    	});
    	$('input.cancel').click(function(){
    	    document.location.href = PMTCore.TRIBUTE_URL + 'photos/';
    	});
    },
    
    deletePhoto: function(){
         return confirm('Are you sure you want to permanently delete this photo and all of its comments?');
    },
    
    deleteComment: function(){
         return confirm('Are you sure you want to delete this comment?');
    }

};