$(function(){
	
$("#marcas a").click(function(){
	$("#main").load($(this).attr("href"));
	$.trackPageview($(this).attr("href"));
	return false;
});
$("#voltar").click(function(){
	$("#main").load('/catalogo');
});

// Catalogo/Modelos
$("#modelos .list .hover tr").click(function(){
	$(this).siblings("tr").removeClass("hover");
	$(this).addClass("hover");
	$("#pecas .list > table").html('<tr><td colspan="8" style="text-align:center;height:35em"></td></tr>');
	$("#pecas .list > table tr td").html('<img src="/static/img/loading.gif" alt="A carregar..." />');
	$.get("/pecas", { modelo: $(this).attr("title"), pre: "true", k: $("#k").val() }, function(resp){
		$("#pecas .list > table tr td").html(resp);
	});
	$(".pecas_right").text("Pesquisar por nome");
	$("#pesquisa").show();
});
$("#pesquisa button").click(function(){
	$("#pecas .list > table").html('<tr><td colspan="8" style="text-align:center;height:35em"></td></tr>');
	$("#pecas .list > table tr td").html('<img src="/static/img/loading.gif" alt="A carregar..." />');
	$.get("/pecas", { modelo: $("#modelos tr.hover").attr("title"), q: $(this).siblings("input").val() }, function(resp){
		$("#pecas .list > table").html(resp);
		$.trackPageview('/pecas?modelo=' + $("#modelos tr.hover").attr("title") +'&q=' + $(this).siblings("input").val());
	});
});
$("#pesquisa input").keypress(function(e){
	if (e.which == 13) $(this).siblings("button").click();
});

});