function toggle() {
	$('.naeringstab').toggle();
	if ($('#toggler').html() == '» Vis næringstabeller') {
		$('#toggler').html('&laquo; Skjul næringstabeller');
	} else {
		$('#toggler').html('&raquo; Vis næringstabeller');
	}
}

function display_update(id) {
	var url = document.URL;
	if (url.indexOf('#') != -1) {
		var products = url.split('#');
		$(".product").hide();
		if (id) {
			$("#" + id).show();
		} else {
			$("#" + products[1]).show();
		}
	}
}