$(document).ready(function () {
	$('#wishlist_addtocart').click(function () {
		var styles = new Array();
		var boxes = $('.add_to_cart_checkbox');
		for (var i = 0; i < boxes.length; i++) {
			if (boxes[i].checked) {
				styles[styles.length] = boxes[i].value;
			}
		}
		if (styles.length > 0) {
			myshape.ajax.addManyToCart(styles, function () {
				document.location = '/shop/my-bag';
			});
		}
	});
});
