Well, you haven't made the loading image available to the script, see:
http://www.dynamicdrive.com/forums/s...ad.php?t=26395
But the main problem is no closing > for the first a tag:
Code:
<div id="FrogJS">
<a href="1.jpg" title="Jolie Myers / The State News"
<img src="1_thumb.jpg" alt="An attendee of Rabbi Hendel Weingarten's Purim service at Chabad House on Elizabeth Street in East Lansing uses a noisemaker after the name of Haman is read. Purim is a Jewish holiday that celebrates the deliverance of the Jews from an evil plot conceived by Haman, as chronicled i
It should be like:
Code:
<div id="FrogJS">
<a href="1.jpg" title="Jolie Myers / The State News">
<img src="1_thumb.jpg" alt="An attendee of Rabbi Hendel Weingarten's Purim service at Chabad House on Elizabeth Street in East Lansing uses a noisemaker after the name of Haman is read. Purim is a Jewish holiday that celebrates the deliverance of the Jews from an evil plot conceived by Haman, as chronicled i
You should also use a valid URL DOCTYPE, like so:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<script type="text/javascript" src="scripts/prototype.js"></script>
<script type="text/javascr . . .
At the start of your page.
Bookmarks