// JavaScript Document
$(document).ready(function(){
	 $(document).pngFix(); 
	 $("input[@type*=submit]").attr("class", "inputButton");
	 $("input[@type*=reset]").attr("class", "inputButton");
	 $("input[@type*=button]").attr("class", "inputButton");
	 $('#produtos .divprodutos').biggerlink();
	 $('.lateral2').biggerlink();
	 $('#cbo_estados').change(function(){
		if ($('#cbo_estados').val()=='0') {							   
		$('.classCidades').hide();
		$('.classBairros').hide();
		} else {
		$('.classCidades').show();
		}
	})
	 $('#cbo_cidades').change(function(){
		if ($('#cbo_cidades').val()=='0') {							   
		$('.classBairros').hide();
		} else {
		$('.classBairros').show();
		}
	})
	 $('#cbo_bairros').change(function(){
		if ($('#cbo_cidades').val()=='0') {							   
		$('#resultado_representantes').empty();
		} else {
		 $.ajax({
   			type: "POST",
   			url: "resultado_representantes.php",
  			data: $('#frmFiltro').serialize(),
   			success: function(msg){
    			$('#resultado_representantes').html(msg);
			}
 			});
		}
		
	  $('img[@src$=.png]').ifixpng();
	
	  });
});
    
