	$(document).ready(function() {
		$('.bt_ofertas').hover(function() {
			$(this).stop().animate({color: '#FFF'}, 150);
		},
		function() {
			$(this).stop().animate({color: '#A0A0A0'}, 150);
		});
		//
		$('.link_rodape').hover(function() {
			$(this).stop().animate({color: '#FFF'}, 150);
		},
		function() {
			$(this).stop().animate({color: '#666666'}, 150);
		});
		//
		$('.borda_noticias').hover(function() {
			$(this).stop().animate({backgroundColor: '#C81326'}, 150);
		},
		function() {
			$(this).stop().animate({backgroundColor: '#D1D1D1'}, 150);
		});
		//
		$('.link_noticias').hover(function() {
			$(this).stop().animate({color: '#333'}, 150);
		},
		function() {
			$(this).stop().animate({color: '#666'}, 150);
		});
		//
		$('.borda_veiculos').hover(function() {
			$(this).stop().animate({backgroundColor: '#C81326'}, 150);
		},
		function() {
			$(this).stop().animate({backgroundColor: '#D1D1D1'}, 150);
		});
		//
		$('.bt_voltar').hover(function() {
			$(this).stop().animate({color: '#333'}, 150);
		},
		function() {
			$(this).stop().animate({color: '#666'}, 150);
		});
	});
	
