//start welcome slideshow
$(function(){
    $('#welcome3 a:gt(0)').hide();
    setInterval(function(){
      $('#welcome3 a:first-child').fadeOut('slow')
         .next('a').fadeIn('slow')
         .end().appendTo('#welcome3');}, 
      3000);
});
//end welcome slideshow
