/*
  ============================================================================
  Script zur Preisanpassung bei www.medizinshop.de | eproducts, lk, 20.04.2007
  ============================================================================
*/


// für Prototype
/*
function changePrice(anzahl)
{
  var id = $('preisanpassung_select').value;

  var i = 0;
  while (i < (anzahl+2))
  {
    $('preisanpassung_'+i).style.visibility = 'hidden';
    i++;
  }

  $('preisanpassung_'+id).style.visibility = 'visible';
}
*/


// für jQuery
function changePrice(anzahl)
{
  var id = $('#preisanpassung_select').val();

  var i = 0;
  while (i < (anzahl+2))
  {
    $('#preisanpassung_'+i).hide();
    i++;
  }

  $('#preisanpassung_'+id).hide();
}



