You need also to delete/remove those image's info/path from the images object that the slideshow loads. I see in your page this code:
var data = {
'a.jpg': { caption: '' },
'b.jpg': { caption: '' },
'c.jpg': { caption: '' },
'd.jpg': { caption: '' },
'e.jpg': { caption: '' },
'f.jpg': { caption: '' },
// etc
Your last image (as far as I can see is "m.jpg" but the code is looking for others, up to 'zze.jpg'. So go to the code and remove those you don't want. That object should end with 'm.jpg': { caption: '' }};
Good luck!