function slideShow(){$('#gallery a').css({opacity:0});$('#gallery a:first').css({opacity:1});$('#gallery .caption').css({opacity:0.7});$('#gallery .content').html($('#gallery a:first').find('img').attr('alt')).animate({opacity:1},400);setInterval('gallery()',5000)}function gallery(){var a=$('#gallery a.show')?$('#gallery a.show'):$('#gallery a:first');var b=((a.next().length)?((a.next().hasClass('caption'))?$('#gallery a:first'):a.next()):$('#gallery a:first'));var c=b.find('img').attr('alt');b.css({opacity:0}).addClass('show').animate({opacity:1},1000);a.animate({opacity:0},1000).removeClass('show');$('#gallery .caption').animate({opacity:0},{queue:false,duration:0}).animate({height:'1px'},{queue:true,duration:300});$('#gallery .caption').animate({opacity:0.7},100).animate({height:'65px'},500);$('#gallery .content').html(c).animate({opacity:1},100)}
