// jQuery
jQuery(document).ready(function() {

	// banner
	$(document).ready(function() {
			$('.banner').cycle({
			fx: 'fade'
		});
	});
	// home - bancotoyota
	$('.home_novos').mouseover(function() {
		$(this).addClass('home_novos_over');
	}).mouseout(function() {
		$(this).removeClass('home_novos_over');
  });
	// home - agendamento
	$('.home_agendamento').mouseover(function() {
		$(this).addClass('home_agendamento_over');
	}).mouseout(function() {
		$(this).removeClass('home_agendamento_over');
  });
	// home - certificados
	$('.home_certificados').mouseover(function() {
		$(this).addClass('home_certificados_over');
	}).mouseout(function() {
		$(this).removeClass('home_certificados_over');
  });
	// home - seminovos
	$('.home_seminovos').mouseover(function() {
		$(this).addClass('home_seminovos_over');
	}).mouseout(function() {
		$(this).removeClass('home_seminovos_over');
  });
});
