$(document).ready(function() { 
  $('#manufacturer_select').change(function() {
    if ($(this).val() != '') {
      window.location = '/brands/' + $(this).val();
    }
  });
  
  $('#search_name_mask').keyup(function() {
    if ($('#search_name_mask').val().length > 2) {
      $('#search_submit').removeAttr('disabled')
    } else {
      $('#search_submit').attr('disabled', 'disabled')
    }
  });
  
  $('#search_name_mask').autocomplete("/products/autocomplete", {
    minChars: 3, delay: 2000, width: 200, selectFirst: false
  });

  $('#comment_body').keyup(function() {
    $(this).val() == '' ? $('#send_comment').remove('disabled', 'disabled') : $('#send_comment').removeAttr('disabled');
  });

  $('.tooltip_trigger').tooltip({
    showURL: false,
    track: true,
    bodyHandler: function() {
      return $('#'+$(this).attr('rel')).html();
    }
  });

  var width70 = screen.width * 0.7;
  var height70 = screen.height * 0.7;
  var left = screen.width / 2 - width70 / 2;
  var top = screen.height / 2 - height70 / 2;
  var features = 'height=' + height70 + ',width=' + width70 + ',toolbar=0,scrollbars=0,status=0,resizable=0,location=0,menuBar=0,left='+left+',top='+top;

  $('._product_photo_popup').click(function(e) {
    e.preventDefault();
    window.open($(this).attr('href'), 'product_photo', features);
    return false;
  });
});