$(function() {
  if($('#menu_produtos').size() > 0){
    build_viewer();
    $('#byref').autocomplete(autocomplete);
    $('#findref img').click(function(){
      $(this).parent().submit();
    });
  }

  $('#categoria, #fabricante, .choice').change(function(){
    build_viewer();
  });
  $('#findref').submit(function(){
    if($('#byref').val() == '') return false;
    window.location = '/produto/'+$('#byref').val().replace(new RegExp(/\//g),'-').replace(/ /g,'-');
    console.log($('#byref').val().replace('/\//g','-').replace('/ /g','-'));
    return false;
  });

  $('#mapa ul li a').click(function(){
    $('.default').hide();
    $('.texto_estado').hide();
    $('.'+$(this).parent().attr('id')).fadeIn();
    return false;
  })
  $('#slider').nivoSlider({
    effect:'fold'
  });
  $('.nivo-controlNav').hide();
  $("#carrosel").continuousCarousel({ margin: 10, max_width: 810 });
  if(window.location.pathname == '/'){
    $('.resto').hide();
    $('#menu_produtos h3').hide();
  }
});
function build_viewer(){
  $('.choice, #empty').hide();
  if($('#menu_produtos').find($('#categoria').val()) != null) $($('#categoria').val()).show();
  link = '/produtos/';
  link += $('#categoria').val().replace('#','');
  link += '/';
  if($('.choice:visible').size() > 0){
    link += $('.choice:visible').val();
    $('label[for=subcategoria]').show();
  }else{
    link += 'qualquer';
    $('label[for=subcategoria]').hide();
  }
  link += '/';
  link += $('#fabricante').val();
  $('#view').attr('href',link);
}
function send_form(e){
  var key;
  if(window.event)
    key = window.event.keyCode;
  else
    key = e.which;
  if(key == 13)
    $('#findref img').click();
}

