/* Actions for product-buttons in webshop_standard.php */
$('document').ready( function () {
	$('input[@type=submit].button').focus( function () { $(this).blur(); });

	$('input[@type=submit].button').click( function () {
		var prodId = $(this).attr('name');
		var prodQt = $('input[@type=text]#'+ prodId).attr('value');

		$('#cart').html('<div style="padding: 0px 0px 0px 30px; color: #333;">Uppdaterar...</div>');
		
		$('div.confirm-overlay').show();
		$('div.confirm-alert').show();

		alert('add, '+prodId+', '+prodQt);
		
		$.post('../../xmlhttp/cartaction.php', { action: 'add', prodId: prodId, prodQty: prodQt }, function (data) {
			
			if (data != '' && ! isNaN(data)) {
				$.get('../../ajax.php', { sel: data, page: 'cart', ajax: '1' }, function (html) {
					$('#cart').html(html);
				});
			} else if (! data) {
				$('#cart').load('xmlhttp/cart.php?ajax=1');
			}
		});

		return false;
	});
});

