$(function() {
	$('.bannerslideshow img:gt(0)').hide();

	setInterval(function(){
      $('.bannerslideshow :first-child').fadeOut(2000)
         .next('img').fadeIn()
         .end().appendTo('.bannerslideshow');},
      5000);
})
