Hi,
In the page that doesn't work you are including jQuery twice.
Once in line 4
HTML Code:
<script type="text/javascript" src="http://www.madaboutcasinos.com/wp-content/w3tc/min/4865881c.d8fd3a.js"></script>
and once in line 94:
HTML Code:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" type="text/javascript"></script>
Remove the second version and this will solve your problem.
BTW, the reason you are seeing the error you posted is that this:
You have minified all of your JavaScript includes with W3 Total Cache (a good idea). This Lumps all of the minified JavaScript into one file.
So, within this file, you first load jQuery, then you load the lightbox plugin which adds the lightbox method to the $ function.
Then you load the second version of jQuery, which replaces the $ function - and the lightbox method with it.
Bookmarks