Produtos = ({					  
	exibe : function(id,cat){		
		parametros = 'id='+id;
		//window.location.href = '../produtos/produtos.php?id='+id;
		if (cat == 1) {
			window.location.href = '../produtos/produtos_tubos.php';
		}
		else if((cat == 2) || (cat == 3)) {			
			window.location.href = '../produtos/produtos_outros.php?id='+id;
		}
	},
	paginacao : function(page, perpage,dir,busca){	
		if (dir == 1){			
			page = page + 6;
			perpage = 6;
		}else{
			page = page - 6;
			perpage = 6;
		}
		if(busca == 0){
			parametros = 'campo_busca=&page='+page+'&perpage='+perpage;
		}else{
			parametros = 'campo_busca='+busca+'&page='+page+'&perpage='+perpage;
		}
		$.ajax({				   	
				 url:'../includes/pagprodutos.php',						 
				 type:'POST',
				 data:parametros,
				 success:function(retorno)
				 {
					$('#resp_busca').html(retorno);
				 }
				});
	}
});
