// JavaScript Document
$(document).ready(function (){
  
    $("#abacompra").click(function(){
        $("#compra_search").show();
        $("#preco_search").hide();
        $("#web_search").hide();  
    });

    $("#abapreco").click(function(){
        $("#compra_search").hide();
        $("#preco_search").show();
        $("#web_search").hide();  
    });

    $("#abaweb").click(function(){
        $("#compra_search").hide();
        $("#preco_search").hide();
        $("#web_search").show();  
    });

    $(".select_state").change(function(){
        $('.select_city').empty();
		$('.select_city').append("<option>Carregando...</option>");
		$.getJSON("json/city.php",{ uf:$(this).val() },
			function(response){
				$('.select_city').empty();
				var chk = "<option value='0'>Selecione</option>";
				$('.select_city').append(chk);
				$.each(response.city,function(id, nome) {
				  var chk2 ="<option value="+id+">"+nome+"</option>"
					$('.select_city').append(chk2);
				});

			});
    });    
      
    /* arredondando cantos */ 
	//$(".form_corner").corner();
	//$(".corner").corner();
    
      
});

