$(document).ready(function(){
	
	alternativeContent();
	
	function alternativeContent(){
		if($("#banner-home > .banner").length > 0){
			initBanner();
			rotate();
		}
	}

	function initBanner(){
		$("#banner-home > .banner > li:not(:first)").hide();
	}

	function rotate(){
		visible = $("#banner-home > .banner > li:visible");

		if(!visible.is(":last-child")){
			visible.fadeOut("slow", function(){
				$(this).next().fadeIn("slow");
			});
		}else{
			visible.fadeOut("slow", function(){
				$("#banner-home > .banner > li:first").fadeIn("slow");
			});
		}
	
		setTimeout(rotate, 5000);
	}

});



