$("body").ready(function () {

		lh = $("div#header h1").outerHeight();
		rh = $("li#description").outerHeight();
		if (lh < rh) {
			$("div#header h1").css("padding", (rh - lh + 15) + "px 0px 0px 0px");
		}
		if (lh > rh) {
			$("li#description").css("padding", (lh - rh + 24) + "px 0px 0px 0px");
		}

		if (navigator.platform.match(/Mac.*/)) {
			/* Förmodligen inte kompatibelt med asics framework */
			//document.body.style.fontFamily = 'Helvetica, Arial';
		}

		$("span.filterall a").hover(function () {
			$("span.filterall").css("background", "#cecece");
		}, function () {
			$("span.filterall").css("background", "#ffffff");
		});
		$("span.filterfilter a").hover(function () {
			$("span.filterfilter").css("background", "#cecece");
		}, function () {
			$("span.filterfilter").css("background", "#ffffff");
		});
});
