// JavaScript Document


jQuery(document).ready(function($) {
	 $('.showcase-item-link').hover(function() {$(this).find('span.showcase-item-hover').animate({opacity:1}, 200);
		}, function() {
			$(this).find('span.showcase-item-hover').stop(0,0).animate({opacity: 0}, 200); 
	});
});

$(document).ready(function($) {
      	$("#main-carousel").owlCarousel({
		navigation : false, // Show next and prev buttons
		pagination: false,
		autoPlay: true,
		slideSpeed : 300,
		paginationSpeed : 400,
		singleItem:true
	});
});
$(document).ready(function($) {
	var qot = $ ("#quote-rotator"); 

      	qot.owlCarousel({
		pagination : false,
		slideSpeed : 300,
		paginationSpeed : 400,
		singleItem:true
	});
 	$(".btn-next").click(function(){qot.trigger('owl.next');})
	$(".btn-prev").click(function(){qot.trigger('owl.prev');})
});		
$(document).ready(function($) {
	$("#fleet-carousel").owlCarousel({
		items: 4,
		autoPlay: 3000,
		itemsDesktop: [1199, 3],
		itemsDesktopSmall: [991, 3],
		itemsTablet: [767, 2],
		navigation : false, // Show next and prev buttons
		slideSpeed : 300,
		paginationSpeed : 400,
	});
});


