var bannerRotatorInterval = 4000;

$(window).load(function () {	
	$('#banner-rotator li:gt(0)').hide();
	$('#banner-rotator ul').css("visibility", "visible");
	startBannerRotator();
});

function startBannerRotator()
{
	setInterval(function(){
		$('#banner-rotator li:first-child').fadeOut()
		.next('li').fadeIn()
		.end().appendTo('#banner-rotator ul');}, 
	bannerRotatorInterval);
}

