window.onload = function() 
{
	var pic1 = new Image(188,35); 
	pic1.src = "/images/sub_button_hover.png";
	
	var left = document.getElementById("ml"); 
	var center = document.getElementById('mc');
	var right = document.getElementById("mr");

	var h_left = left.offsetHeight;
	var h_center = center.offsetHeight;
	var h_right = right.offsetHeight;
		
	var max = 0;
	
	if( h_left > max )
	{
		max = h_left;
	}
	
	if( h_center > max )
	{
		max = h_center;
	}
	
	if( h_right > max )
	{
		max = h_right;
	}
		
	left.style.height = (max+25)+"px";
	center.style.height = max+"px";
	right.style.height = (max+25)+"px";	
}	

$(document).ready(function() {
	if( $('.p-image').length > 0 ) {
		$('.p-image a').lightBox();
	}
	if( $('.d_summary').length > 0 ) {
		$('.d_summary a').lightBox();
	}
});

		<!--
	  if(window.attachEvent)
	    window.attachEvent("onload",setListeners);
	
	  function setListeners(){
	    inputList = document.getElementsByTagName("INPUT");
	    for(i=0;i<inputList.length;i++){
	      inputList[i].attachEvent("onpropertychange",restoreStyles);
	      inputList[i].style.backgroundColor = "";
	    }
	    selectList = document.getElementsByTagName("SELECT");
	    for(i=0;i<selectList.length;i++){
	      selectList[i].attachEvent("onpropertychange",restoreStyles);
	      selectList[i].style.backgroundColor = "";
	    }
	  }
	
	  function restoreStyles(){
	    if(event.srcElement.style.backgroundColor != "")
	      event.srcElement.style.backgroundColor = "";
	  }//-->
