/*********************
	Copyright Breakthrough Design Group
*********************/

/*** 
 Resizing the page height
**/
function onloadhandlers(){
	var contentdiv = document.getElementById('content');
	var contentHeight = contentdiv.offsetHeight;
	if(document.getElementById('section1') && document.getElementById('section2')){
		document.getElementById('section1').style.height = contentHeight+'px';
	 	document.getElementById('section2').style.height = contentHeight+'px';
	}
}