;(function($){
	
	$(document).ready(function(){
		
		$('.toggle:gt(0)').hide();	
		var timer = window.setInterval(function(){
			
			var $shownDiv = $('.toggle:visible');
			$('.toggle:not(:visible)').show();
			$shownDiv.hide();
			
		}, 5000);
	});
	
})(jQuery);
