$(document).ready(function(){
   $('#loading_ss').fadeOut('fast', function(){
  $('.slideshow').animate({'opacity':1}); 
  });
});

function deleteSlideShow(foto_id, td_id){
    var td_id;
    if (confirm('Are you sure you want to delete this image?'))
        $.ajax({
          url: "../../includes/code/delete_slideshowimage.php?foto_id="+foto_id,
          success: function(data){
              $('#td_'+td_id).html('AAAAAAA');
          if (data!='ok')
            alert("An error ocurred.\nPlease, try again.")
          else
            location.reload();
          }
        });
}
