What "others"... the page seems to work just fine (FF 2.0)

To note: firebug reports a 404 error for "http://c21ar.wsm-dev.com/cfm/
images/loading.gif"





On Mar 27, 9:45 pm, "Rick Faircloth" <[EMAIL PROTECTED]> wrote:
> Hi, all...
>
> Got some strange sliding going on.
>
> Here's the link:
>
> http://c21ar.wsm-dev.com/cfm/our-agents.cfm
>
> Click on the "Click here to view or hide agent's biography" link.
>
> The top bio slides and hides nicely.  The others are just spastic.
>
> The jQ controlling this is:
>
>         <script type="text/javascript">
>
>                 $(document).ready(function() {
>
>                         $('div.bio-slide').find('div.biography').hide().end();
>
>                         $('a.showbio').each(function(i) {
>                                 var $match = $('div.biography').eq(i);
>
>                                 $(this).toggle(function() {
>                                         $match.slideDown('slow');
>                                         }, function () {
>                                         $match.slideUp('slow');
>                                         }
>                                 );
>                         });
>                 });
>
>         </script>
>
> Ideas?
>
> Thanks,
>
> Rick

Reply via email to