$(document).ready(function() {

	/* Fancybox
	--------------------------------------------------------------------------------------- */
	jQuery("#cta-video").click(function(e) {
		e.preventDefault();
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'			: 680,
			'height'		: 495,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			   	'wmode'				: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});
		return false;
	});
	
	$("a[rel='lightbox'], .gallery-item a").fancybox({
		'titleShow' : false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'autoDimensions'	: true,
		'scrolling'			: 'no',
		'centerOnScroll'	: true
	});
	
	$("[rel='lightbox-animals'], [rel='lightbox-bluffs'], [rel='lightbox-melons'], [rel='lightbox-corn'], [rel='lightbox-onions'], [rel='lightbox-pancho'], [rel='lightbox-apples'], [rel='lightbox-tomatos'], [rel='lightbox-festival'], [rel='lightbox-potatos'], [rel='lightbox-squash'], [rel='lightbox-runaway']").fancybox({
		'titleShow' : false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'autoDimensions'	: true,
		'scrolling'			: 'no',
		'centerOnScroll'	: true
	});
	
});


























