var prices = [{id:55904, min:1, max:200000, price:'$8.79'}];

$(document).ready(function(){
  $('input.addToCart').keyup(function(){
    qty = $(this).val();
    
    $('tr.price_row').each(function(){
      $(this).removeClass('highlight');
    });

    $.each(prices, function(){
      if(this.min <= qty && qty <= this.max) {
        $('#current_price').html(this.price);
        $('#price_' + this.id).addClass('highlight');
      }
    });
  });

  $('div.images > a').mouseover(function(){
    $('#mainImage').attr('src', $(this).attr('data-url'));
  });
});

