$(document).ready(function(){
	$('a#mostra_pesq_motos').click(function() {
	$('.tabs_pesquisa_barcos').hide();
	$('.tabs_pesquisa_carros').hide();
	$('.tabs_pesquisa_motos').show();
	$('#pesq_hp_carros').hide();
	$('#pesq_hp_barcos').hide();
	$('#pesq_hp_motos').show();
    return false;
    });
	$('a#mostra_pesq_carros').click(function() {
	$('.tabs_pesquisa_motos').hide();
	$('.tabs_pesquisa_barcos').hide();
	$('.tabs_pesquisa_carros').show();
	$('#pesq_hp_motos').hide();
	$('#pesq_hp_barcos').hide();
	$('#pesq_hp_carros').show();
    return false;
    });
	$('a#mostra_pesq_barcos').click(function() {
	$('.tabs_pesquisa_motos').hide();
	$('.tabs_pesquisa_carros').hide();
	$('.tabs_pesquisa_barcos').show();
	$('#pesq_hp_motos').hide();
	$('#pesq_hp_carros').hide();
	$('#pesq_hp_barcos').show();
    return false;
    });
});
