// JavaScript Document
  $(document).ready(function(){
  	lastBlock = $("#index-opciones #a1");
    maxWidth = 380;
	minWidth = 150;	
    
    $("#index-opciones ul li a").hover(	
		function(){			
			$(lastBlock).animate({width: minWidth+"px"}, { queue:false, duration:400 });
			$(this).animate({width: maxWidth+"px"}, { queue:false, duration:400});
			currentBlock = this;				
			lastBlock = this;			
	    });
	
	$("#cbo_distrito").attr('disabled',true);
	
	$("#cbo_tipo").change(function () {
	     $("#cbo_distrito").attr('disabled',false);								
        $("#cbo_tipo option:selected").each(function () {
           elegido=$(this).val();
           $.post("combo_distritos.php", { elegido: elegido }, function(data){
              $("#cbo_distrito").html(data);
              //$("#cmbciudades").html("");
           });
        });
     });

	
  });

