// Homepage Slider
$(function() {

$(".slidetabs").tabs(".images > div", {
 
	// enable "cross-fading" effect
	effect: 'fade',
	fadeInSpeed: 'fast',
 
	// start from the beginning after the last tab
	rotate: true
 
// use the slideshow plugin. It accepts its own configuration
}).slideshow(
	{
		clickable:false,
		autoplay:false,
		interval: 8000
	});
	
	
$(".automotive-toggle").tabs(".automotive-compare > div.tab", {
 
	// enable "cross-fading" effect
	effect: 'fade',
	fadeInSpeed: 'fast',
 
	// start from the beginning after the last tab
	rotate: true
 
// use the slideshow plugin. It accepts its own configuration
}).slideshow(
	{
		clickable:false,
		autoplay:false,
		interval: 5000
	});
		
	
	
	
	
});


