$(document).ready(function(){					   
	$.ajax ({
		url: "/include/banner.php",
		success: function(html){
			$("#showBanner").html(html);
			$("#showBanner").fadeIn('slow');
		}
	});						   
						   
	$("#showBanner").everyTime(5000, function (){
		
		$.ajax ({
			url: "/include/banner.php",
			success: function(html){
				$("#showBanner").fadeOut('slow', 
					function () { 
						$("#showBanner").html(html);
						$("#showBanner").fadeIn('slow'); 
					});
			}
		});
	 });
});