$(document).ready(function() {
	$("input[type=checkbox]").each(function() {
		if ($(this).attr("id").indexOf("cbPubCheckBox")  != -1) {
			$(this).removeAttr("onclick");
			$(this).click(function() {
				$.ajax({url: '/nettbutikk/pubCheckboxchecked=' + ($(this).is(':checked') ? 'true' : 'false'), success: function(data) {
						document.location = document.location;
					}
				});
			});
		}
	});
	$("#shoppingCartLink").click(function() {
		$.ajax({url: '/nettbutikk', success: function(data) {
				document.location = '/shop/shoppingcart.aspx';
			}
		});
		return false;
	});
});
