function Cliente()
{
	// pega o ID selecionado no combo para reescrever a URL
	$("#selCategoriaCliente").change(function()
	{
		
		var id = $(".selectbox-wrapper ul li.selected").attr('id');
			
		id = id.replace("selCategoriaCliente_input_","");		
		
		// verifica se foi selecionado um valor
		if(id != "" )
		{
			window.location.href = "clientes.php?CategoriaClienteID=" + id;
		}
		else
		{
			window.location.href = "clientes.php";
		}
	});
}

/**
 * FUNÇÃO INVOCADA PELA ANIMAÇÃO DO CARROSSEL DE CLIENTES
 * 
 * @author Gibran (gibran@gadbrivia.com.br)
 */

function AbrirCliente(EmpresaID)
{
	window.location.href = "clientes.php?EmpresaID=" + Number(EmpresaID);
}