
		$(document).ready( function() {
		
		// ----- Carousel
			$('#billy_scroller').billy({
				slidePause: 5000,
				// 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: $('#carousel_billy_next'),
				prevLink: $('#carousel_billy_prev')
			});
			
		// ----- Fading Carousel
			$('#billy_fader').billy({
				transition: 'fade',
				slidePause: 5000,
				// 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')
			});
			
		});
				
/*- Slide Captions
----------------------------------------------------------------------*/

		$(document).ready(function(){
			//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
			//Full Caption Sliding (Hidden to Visible)
			$('.boxgrid.captionfull').hover(function(){
				$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:200});
			}, function() {
				$(".cover", this).stop().animate({top:'143px'},{queue:false,duration:200});
			});
		});
