// JavaScript Document
function increaseheight(){
	
	var contentHeight=document.getElementById('layContent').offsetHeight;
	
	document.getElementById('layContentLeftBackground').style.height = contentHeight +'px';
	document.getElementById('layContentRightBackground').style.height = contentHeight +'px';
	
}	

window.onload = function() {
	increaseheight();
}