Each image is not loaded in the slideshow concurrently - rather, there's a single element that displays each image, and the slideshow works by changing the source for the image.
However, you should be able to work around this if you just want to create a link to automatically load a certain image. The image data is stored in an array named "photos", so you should be able to create a button that triggers the loading of a given photo. The script uses a function "navigate" to go backwards and forwards, so what you'll need to do is modify it to allow arbitrary photos to be loaded.
Something like this
var navigate_to = function(image_number) {
if(animating) {
return;
}
currentImg = image_number;
var currentContainer = activeContainer;
if(activeContainer == 1) {
activeContainer = 2;
} else {
activeContainer = 1;
}
showImage(photos[currentImg - 1], currentContainer, activeContainer);
};
Should work, but I haven't tested it - you might need to massage the indexes a bit for it to work perfectly. Then, all you need to do is create a link that will call this function with the index it's pointing to.
To be more specific on this last point, you can create an element like this -
<div class="navigator">1</div>
Then add this code -
$(".navigator").on("click", function () {
navigate_to(parseInt($(this).html(), 10));
});
There's no need to specifically create a hyperlink, since this is in-page navigation. What this will do is if an element with the class "navigator" is clicked, the value in the element will be sent to "navigate_to". So long as you put integers in the navigate elements, this should work well enough.