// jQuery Slideshow for Homepage

(function($) { 
	$(document).ready(function() {
							   
		//initiate jquery slideshow
		$('.slideshow').cycle({
			fx: 'fade',
			speed:    800, 
			timeout:  4000
		});
		
		// initiate ie6 png fix
		$(document).pngFix();
		
	});
})(jQuery);