$(function() {
	$(".billedrotation").jCarouselLite({
		auto: 800,
		speed: 1000,
		visible: 5,
		circular: false
	});
});

var minFontsize = 9;
var maxFontsize = 17;
function increaseFontSize() {
  if (document.getElementById("contentSubpage")) {
    var midt_indhold = document.getElementById("contentSubpage").getElementsByTagName("p");
    for (i = 0; i < midt_indhold.length; i++) {
      if (midt_indhold[i].style.fontSize) { var s = parseInt(midt_indhold[i].style.fontSize.replace("px", "")); } else { var s = 12; }
      if (s != maxFontsize) { s += 1; }
      midt_indhold[i].style.fontSize = s + "px"
    }
  }
}
function decreaseFontSize() {


  if (document.getElementById("contentSubpage")) {
    var midt_indhold = document.getElementById("contentSubpage").getElementsByTagName("p");
    for (i = 0; i < midt_indhold.length; i++) {
      if (midt_indhold[i].style.fontSize) { var s = parseInt(midt_indhold[i].style.fontSize.replace("px", "")); } else { var s = 12; }
      if (s != minFontsize) { s -= 1; }
      midt_indhold[i].style.fontSize = s + "px"
    }
  }
}
