function slideShow(){jQuery('#slider a').css({opacity:0.0});jQuery('#slider a:first').css({opacity:1.0});setInterval('slider()',6000);}
function slider(){var current=(jQuery('#slider a.show')?jQuery('#slider a.show'):jQuery('#slider a:first'));var next=((current.next().length)?((current.next().hasClass(''))?jQuery('#slider a:first'):current.next()):jQuery('#slider a:first'));next.css({opacity:0.0}).addClass('show').animate({opacity:1.0},1000);current.animate({opacity:0.0},1000).removeClass('show');}
