// JavaScript Document
$(document).ready(function() {$('.slideshow') .cycle({  
fx: 'scrollRight',  speed:   600,  timeout: 2000,  next:   '.slideshow',  pause:   1  }); });
/*FANCYBOX*/
$(document).ready(function() {
	/* This is basic - uses default settings */
	$("a#single_image").fancybox();
	/* Using custom settings */
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});
	/* Apply fancybox to multiple items */
		$("a[rel=example_group]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
		}
	});
	
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	
});
/*END*/




