I am building a slideshow using jQuery 1.7.1. There's one annoying bug. I see a little question mark in the top-left of the slideshow. The slideshow seems to be unaffected otherwise, but I do want to get rid of the question mark.

I took code from a related blog post on JonRaasch.com and altered the code so that
Code:
$(function() {
became
Code:
$(document).ready(function() {
because my browser was complaining that it could not find the variable $. Now, it's not complaining.

Other than that & using different image URLs, I did not alter the code.

The slideshow div is wrapped in another div, which is wrapped in another div. But as far as I know, that's completely irrelevant.