// 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
	$('#blinkiePCF').load(
		'jhtml/pcfCycle.html #main',
		{},
		function()
		{
			// base jquery cycle logic to create fade in slideshow
			$('#galleryPCF').cycle(
			{
				fx: 'fade',
				timeout: 5000
			});
			
		}
	);
	
});
