// by Paul@YellowPencil.com and Scott@YellowPencil.com
function setTall() {
	if (document.getElementById) {
		
		var divs = new Array(document.getElementById('leftcontent'), document.getElementById('rightcontent'));

		var maxHeight = 0;
		for (var i = 0; i < divs.length; i++) {
			if (divs[i].offsetHeight > maxHeight) maxHeight = divs[i].offsetHeight;
		}
		
		
		for (var i = 0; i < divs.length; i++) {
			divs[i].style.height = maxHeight + 'px';
			if (divs[i].offsetHeight > maxHeight) {
				divs[i].style.height = (maxHeight - (divs[i].offsetHeight - maxHeight)) + 'px';
			}
		}
	}
}

window.onload = function() {
	setTall();
}

window.onresize = function() {
	setTall();
}

function hoff()
{
if (document.getElementById('highlight1'))
{
	document.getElementById('highlight1').style.backgroundColor='#FFFFFF';
}
if (document.getElementById('highlight2'))
{
document.getElementById('highlight2').style.backgroundColor='#FFFFFF';
}
if (document.getElementById('highlight3'))
{
document.getElementById('highlight3').style.backgroundColor='#FFFFFF';
}
document.getElementById('searchinfo').style.visibility='hidden';
}

