// ANIMATED BANNER JS
$(document).ready(function(){
	var timer;
	
	//START STATES
	$('#animated_banner .active').show(1);
	rotateNoText(1);
	
	function rotateNoText(startN){
		c= startN;
		//ROTATOR
		var bannerRotate = setInterval(function(){
			var nLis = $('#animated_banner ul li').size();
			
			if(c < nLis){
				$('#animated_banner .active').fadeOut(600).removeClass('active').next().addClass('active').fadeIn(600);
				c++;
			}
			
			else{
				$('#animated_banner .active').fadeOut().removeClass('active');
				$('#animated_banner ul li').first().addClass('active').fadeIn();
				c=1;
			}
		}, 5000);
	};
});
