function propertyChanged(oDiv, propName){	if ( oDiv && oDiv[propName] )	{		if ( oDiv[propName] != oDiv[propName + 'Prev'] )		{			oDiv[propName + 'Prev'] = oDiv[propName];			return true;		}	}	return false;}function checkAdjustFeatureHeight(){	mfhc = document.getElementById('mainFeatureHeightCheck');	sfhc = document.getElementById('subFeatureHeightCheck');		if ( propertyChanged(mfhc,'offsetHeight') || propertyChanged(sfhc,'offsetHeight') )	{		mfhs = document.getElementById('mainFeatureHeightSet');		sfhs = document.getElementById('subFeatureHeightSet');		if ( mfhs && sfhs )		{			maxoh = Math.max(mfhc.offsetHeight, sfhc.offsetHeight);			mfhs.style.height = maxoh + 'px';			sfhs.style.height = maxoh + 'px';		}	}}idInterval = 0;function initHome(){	checkAdjustFeatureHeight();	idInterval = window.setInterval('checkAdjustFeatureHeight()',500);}