Event.observe(window, 'load', function() {
  initAlts();
});

function buy(id) {
  window.location.href = '/cart.php?add=' + id
                       + '&PHPSESSID=p1l4g33fflh9uhrq979ok29k95';
}

function cart(s) {
  s = s || '';
  if ($('add-to-cart') && s) {
    $('button-add-to-cart').hide();
    $('button-add-to-cart-disabled').show();
    $('add-to-cart').hide()
    new Ajax.Updater('add-to-cart', '/particles.php', {parameters : {mode: 'add-to-cart', id : s}, onComplete : function ()
	    {
	    	Effect.Appear('add-to-cart')
	    }
    });
  } else {
    window.location.href = "/cart.php?" + s + "&PHPSESSID=p1l4g33fflh9uhrq979ok29k95";
  }
}

function cartWithYourPrice(id, price) {
  window.location.href = "/cart.php?add="+ id + "&price="+ price
                       + "&PHPSESSID=p1l4g33fflh9uhrq979ok29k95";
}
