﻿var loader = null;
var button = null;
window.addEvent('domready', function() {
	loader = Asset.image(static + '/images/ajax-loader.gif');
	//	new NumberBox('quantityBox', {
	//		min: 1,
	//		max: 999
	//	});
	$$('form').addEvent('submit', function(e) {
		e.stop();
		button = this.getElement('input[type=submit]').dispose();
		loader.clone().inject(this);
		this.async.value = true;
		this.set('send', {
			onComplete: LM.CartFunctions.UpdateLoader.bind(this)
		});
		this.send();
	});
});