$(document).ready ( function() {
	$("#thumbnails-det-veiculo img").click(function() {
		var src = $(this).attr("src");
		var strpath = src.substr(0,src.indexOf('thumb'));
		var strfile = src.substr(src.indexOf('thumb')+6);
		$("#zoom-foto img").attr("src", strpath + strfile);
	});
	$("#info-promocao").animate({ 
		"opacity": "0.7"
	}, 1500 );
})
