$(document).ready(function(){	styleAdaptions();});function styleAdaptions() {		// adapt height of localnav div if content height is bigger	var localNavHeight = $('.content-localnav').height();	var contentHeight = $('.content').height();	if(contentHeight > localNavHeight) {		$('.content-localnav').height(contentHeight);	}	}
