function tagPhotoUpdate( photoID ) {

	$.ajax({ 
		url : '/profile-manager/do.html?action=update-photo&caption=' + $('#tagPhotoCaption' + photoID).val() + '&photoID=' + photoID ,
		success : function() {
			$('#tagPhotoUpdateStatus' + photoID).html('Item Has been updated');
		}
	});

};
				
function tagPhotoDelete( photoID ) {
	if(confirm("Are you sure you want to delete this image?")){
			$.ajax({ 
				url : '/profile-manager/do.html?action=remove-photo&photoID=' + photoID ,
				success : function(data) {
					obj = $.parseJSON(data);
					if(obj.status > 0){	
						$('#tagPhotoUpdateStatus' + photoID).html('Item Has been DELETED');
						$('#image_container_' + photoID).delay(1000).slideUp();
					}
      			}
			});
	}
};
				
				
		


