jQuery(document).ready(function() {
	$("a[href='/shop/order1.html']").click(function() {
		price = parseFloat($('#priceTotal').html().replace('.','').replace(',','.'));
		if (price < 100) {
			alert('Minimumsk&oslash;b 100,00 DKK');
			return false;
		}
	});
});