/**
 *
 * This file is intended for all the JS that would usually
 * Go in the <head> section.
 *
 **/
 	
	//jQuery s3Slider Slideshow
	/*$(document).ready(function() {
			$('#slider').s3Slider({
					timeOut: 5000
			});
	});*/
		
		
	//jQuery FancyBox JS
	$(document).ready(function() {
		$("a[rel=keep_features]").fancybox({
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'titlePosition'		: 'inside',
			'titleFormat'			: function(title, currentArray, currentIndex, currentOpts) {
				return '<span class="fancybox-title-inside">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			}
		});
		
		$("a[rel=greenhouse_features]").fancybox({
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'titlePosition'		: 'inside',
			'titleFormat'			: function(title, currentArray, currentIndex, currentOpts) {
				return '<span class="fancybox-title-inside">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			}
		});
	});
