// JavaScript Document

window.onload = function(){
  var lColum, rColum, maxHeight
  if(document.getElementById('menu3') && document.getElementById('layerContent')){
    lColum = document.getElementById('menu3').offsetHeight;
    rColum = document.getElementById('layerContent').offsetHeight;
	if((lColum+40)>rColum)
	  maxHeight = lColum;
	else
	  maxHeight = rColum;
	maxHeight+= 40;
	if(maxHeight<450)
	  maxHeight: 450;
    document.getElementById('menu3').style.height=maxHeight+'px';
    document.getElementById('layerContent').style.height=maxHeight+10+'px';
  }
}
function clearSearch(input){
  if(input.value=='Sök på webbplatsen')
    input.value='';
}