// JavaScript Document

$(document).ready(function()
{
	// use of ajax to load external html and display same in a prescribed div section
	// format required to make markup available for subsequent processing
	$('div #newsBannerMain').load(
		'includes/content/NewsBannerDiv.html #main',
		{},
		function()
		{
			// base jquery cycle logic to create fade in slideshow
			$('#gallery').cycle(
			{
				fx: 'fade',
				timeout: 10000
			});
			
		}
	);
	
});
