$(document).ready(function(){
						   
	/*Mostra e esconde o nome dos pilotos na lista de equipes*/
	/*$(".bt_pilotos").mouseover(function(){
		$(this).parent(".box_nome_equipe").children(".wrapper_list_pitolos").show();
	})
	
	$(".wrapper_list_pitolos").mouseover(function(){
		$(this).show();
	}).mouseout(function(){
		$(this).hide();
	});
	$(".bt_pilotos").click(function(){
		return false;
	});*/
	
	

	jQuery(".bt_pilotos").mouseover(function(){
		var obj_id = jQuery(this).next().attr("id");
		//alert(obj_id);
		jQuery("#"+obj_id+"").show();
	});
	jQuery(".bt_pilotos").mouseout(function(){
		var obj_id = jQuery(this).next().attr("id");
		jQuery("#"+obj_id+"").hide();
	});
	jQuery(".bt_pilotos").click(function(){
		return false;
	});


});