$(document).ready(function(){
	$("#cbo_estados").change(function(){
			$('#cbo_cidades').html('<option value="sda">Procurando >>></option>');
			$.post('busca_representante.php',			
			{ id_uf : $(this).val() },		
			function(resposta){			
				$('#cbo_cidades').html(resposta);				
			}
		);
	});
	
	$("#cbo_cidades").change(function(){
			$('#cbo_bairros').html('<option value="sda">Procurando >>></option>');
			$.post('busca_representante.php',			
			{ id_cidade : $(this).val() },		
			function(resposta){			
				$('#cbo_bairros').html(resposta);
			}
		);
	});
	tamanhoY = 100 - ($(".contentProd2 .imagem img").height()/2);
	$(".contentProd2 .imagem img").attr({style: "padding-top: "+ tamanhoY +"px"});
	
	
});