document.observe('dom:loaded',
	function (e) {
		var regex = /^http:\/\/.*\/shop\/(warenkorb|panier|carrello|bestellung|commande|ordine)/i;
		$$('a').each(
			function (n) {
				if (regex.test(n.href)) {
					n.href = n.href.replace(/http:/, 'https:');
				}
			}
		);
	}
);

