Issue: When page runs in FF 3.6 the fadeIn doesn't show, until after you've cycled through the galleries, then it works. How can I fix this?
Jquery Code
$(document).ready(function() {
$("#gallerylinks a").each(function(index){
$(this).click(function(){
$(".gallerymain").hide();
$("#gal"+index).fadeIn();
});
});
});
HTML Code
<table width="960" border="0" cellspacing="0" cellpadding="0" id="gallerylinks">
<tr>
<td><a href="#"><img src="images/somename1.jpg" width="240" height="186" /></a></td>
<td><a href="#"><img src="images/somename2.jpg" width="240" height="186" /></a></td>
<td><a href="#"><img src="images/somename3.jpg" width="240" height="186" /></a></td>
<td><a href="#"><img src="images/somename4.jpg" width="240" height="186" /></a></td>
</tr>
</table>