$(document).ready(function() {
					$('.slideshow').cycle({
							fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
							speed:  4000 
							});
						$('.slideshow_ie').cycle({
							fx: 'none', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
							speed:  4000 
							});
			/*
			*   Examples - images
			*/

			$("a[rel=collection_pictures]").fancybox({
				/*
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'none',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>'; 
				}*/
			});
		});

