        $(document).ready(function() {
            $.ajax({
                url: "banner_shopping.html",
				context: document.body,
				cache: false,
                success: function(data) {
                    $("#shopping").html(data);
					 $('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
                }
            });
			
			$.ajax({
                url: "banner_dining.html",
				context: document.body,
				cache: false,
                success: function(data) {
                    $("#dining").html(data);
					$('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
                }
            });
			
			$.ajax({
                url: "banner_entertain.html",
				context: document.body,
				cache: false,
                success: function(data) {
                    $("#entertain").html(data);
					$('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
                }
            });
			
			$.ajax({
                url: "banner_whatship.html",
				context: document.body,
				cache: false,
                success: function(data) {
                    $("#whatship").html(data);
					$('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
                }
            });
			
			$.ajax({
                url: "banner_avenues.html",
				context: document.body,
				cache: false,
                success: function(data) {
                    $("#avenues").html(data);
					$('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
                }
            });
			
			$.ajax({
                url: "banner_magazine.html",
				context: document.body,
				cache: false,
                success: function(data) {
                    $("#magazine").html(data);
					 $('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
                }
            });
			
        });

