// JavaScript Document
var left_div="indexLeftbox";
var right_div="indexRightbox";
function change(id1,id2){
	var con1=document.getElementById(id1);	
	var con2=document.getElementById(id2);	
	if(con1.offsetHeight<con2.offsetHeight){
		con1.style.height=(con2.offsetHeight-0)+"px";		
	}
	else {
		con2.style.height=(con1.offsetHeight-0)+"px";		
	}
}
window.onload=function (){
	try{
		change(left_div,right_div);		
	}
	catch(e){
	}
}

