// JavaScript Document
		$(document).ready( function() {
			
		// ----- Fading Carousel
			$('#billy_fader').billy({
				transition: 'fade',
				slidePause: 8000,
				// We need custom next/prev buttons for this example. If we used the defaults (#billy_next/#billy_prev), every carousel instance on the page would scroll when they're clicked...
				nextLink: $('#fader_billy_next'),
				prevLink: $('#fader_billy_prev'),
				indicators: $('#fade_indicators')
			});
			
		// ----- Tabber
			$('#tabber').billy({
				slidePause: 5000,
				indicators: $('ul#tabber_tabs'),
				customIndicators: true,
				autoAnimate: false,
				noAnimation: true
			});
			
		});

