function autoScroll (duration)
{
    $(document).ready(function() {
	 // console.log($('a.show-next-banner:first'));
	 $('a.show-next-banner:last').addClass('selected');

	 function nextSlide() {
	     // console.log("next slide!");
	     if ($('.selected').length > 1) {
		 // console.log("WTF");
	     } else if ($('.selected').length == 1) {
		 // console.log($('.selected').attr('href'));
		 
		 $($($('.selected').attr('href') +
		     ' a.show-next-banner')[0]).click();
	     } else {
		 // console.log("uh oh, .selected = 0!");
	     }
	     setTimeout(nextSlide, duration);
	 }
	 setTimeout(nextSlide, duration);
    });
}
