window.onload = function ()
{
	addFila( 'principal-select' ,  'top_cidade' , 'post' , './include/consultas.php' , '' , 'op=top_cidade' );	
	addFila( 'principal-select' ,  'top_tipo' , 'post' , './include/consultas.php' , '' , 'op=tipo' );
	addFila( 'principal-select' ,  'top_valormin' , 'post' , './include/consultas.php' , '' , 'op=minimo' );	
	addFila( 'principal-select' ,  'top_combustivel' , 'post' , './include/consultas.php' , '' , 'op=combustivel' );	
	addFila( 'principal-select' ,  'top_ano' , 'post' , './include/consultas.php' , '' , 'op=ano' );		
	addFila( '' ,  'conteudo' , 'post' , './principal.php' , '' , 'null' );
	
}

function trocaImg( idPrincipal , objPequena ){
	var img_principal 	= document.getElementById( idPrincipal );
	var img_pequena		= objPequena;
	var tmp1 			= img_principal.src ;
	var tmp2			= objPequena.src;
	var str1 			= 'http://www.autoregional.com.br/gera.php?image=';
	var str2 			= '&max=100';
	
	tmp2 = tmp2.replace( str1, '' );
	tmp2 = tmp2.replace( str2, '' );
	
	img_principal.src = tmp2;
	objPequena.src = ( str1 + tmp1 + str2 );	
	
}
			