function slideShow()
{$('#gallery li').css({opacity:0.0});$('#gallery li:first').css({opacity:1.0});setInterval('gallery()',2000);}
function gallery(){var current=($('#gallery li.show')?$('#gallery li.show'):$('#gallery li:first'));var next=((current.next().length)?((current.next().hasClass('caption'))?$('#gallery li:first'):current.next()):$('#gallery li:first'));next.css({opacity:0.0}).addClass('show').animate({opacity:1.0},1000);current.animate({opacity:0.0},1000).removeClass('show');}
