// JavaScript Document
$(document).ready(function() {
	$.ajax({
		url: "_ajax/rotator.asp",
		cache: false,
		success: function(html){
			$("#TopNavBanner").fadeIn("slow").html(html);
		}
	});
});
