﻿/*function addOnloadEvent(){
  if ( typeof window.addEventListener != "undefined" ) {
    window.addEventListener( "load", modeHeight, false );
  }
  else if ( typeof window.attachEvent != "undefined" ) {
    window.attachEvent( "onload", modeHeight );
  }
  else {
	if ( window.onload != null ) {
	  var oldOnload = window.onload;
	  window.onload = function ( e ) {
		oldOnload( e );
		window[modeHeight]();
	  };
	}
	else {
	  window.onload = modeHeight;
	}
  }
}
*/
// init csik (sotetkek csik magassaga nehany oldalon)

function modeHeight() {
	
	if(document.getElementById('somain')) {
		var somain = document.getElementById('somain').clientHeight;
		var rightside = document.getElementById('rightside').clientHeight;
		if (rightside > somain) {
			document.getElementById('somain').style.height = rightside + "px";
			document.getElementById('somatar').style.height = rightside + "px";
		}
	}
}