function trocaPagina(c,s,n,p) {
	q = '?c=' + c + '&s=' + s + '&n=' + n + (p != '' ? '&p=' + p : '');
	ajax('_ajaxProdEsq.php' + q,'produtosEsq');
}
function trocaImagem(r,c,s) {
	q = '?r=' + r + '&c=' + c + '&s=' + s;
	ajax('_ajaxProdDir.php' + q,'produtosDir');
}
function trocaLinha(c,s) {
	q = '?c=' + c + '&s=' + s;
	ajax('_ajaxProdEsq.php' + q,'produtosEsq');
	ajax('_ajaxProdDir.php' + q,'produtosDir');
	ajax('_bc.php' + q,'bc');
	switch (c) {
		case 'boxe':
			f = 'boxe';
		break;
		case 'fitnessRes':
		case 'fitnessPro':
			f = 'fitness';
		break;
		case 'bike':
		default:
			f = 'bike';
		break;
	}
	document.getElementById('fb').className = f;
}