jQuery(document).ready(function($) {
	
	// png Transparency fix for IE 6 or incompatible browsers
	$().pngFix( );
	
	if ($.fn.cycle) {
		// Header Image Slide Show
		$('#slideshowContainer').cycle({
			fx: 'fade',
			speed: 2500,
			timeout: 5000,
			cleartype:  1,
			random: 0
		});
	}
	
	if ($.fn.lightbox) {
		// Lightbox for about us page map
		$(".lightbox").lightbox({
			fitToScreen: true,
			fileLoadingImage : 'public/global/js/jquery/plugins/lightbox/images/loading.gif',
			fileBottomNavCloseImage : 'public/global/js/jquery/plugins/lightbox/images/closelabel.gif'
		});
	}
		
});
