	$(document).ready(
		function(){
			$('#slide').innerfade({
				animationtype: 'fade',
				speed: 1000,
				timeout: 3000,
				type: 'sequence',
				containerheight: '1em'
			});
	}
	);

$(document).ready(function() {
    $('.slides_container').cycle({
		fx: 'scrollLeft', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		pause: 0,
		speed: 1000,
		timeout: 16000,
	});
});

$(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.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	
});
