jQuery(function() {

	jQuery('div.article div.gallery').each(function() {

		/**
		 * Activate the cycle plug-in for each gallery with the slideshow property
		 */
		jQuery('.slideshow', this).cycle({
			pause: true,
			timeout: 10000,
			pager: ".slideshow-pager",
			fx: "scrollHorz",
			speed: "fast",
			fit: true,
			random: 1
		});

		/**
		 * Inside the gallery, make the images open in a fancy (lightbox like) box
		 */
		jQuery('.slideshow a', this).fancybox();

		/**
		 * Don't show pager numbers
		 */
		$('.slideshow-pager a', this).html('');
	});
});
