// Add IE Fix for IE only!
if(document.all && document.styleSheets && document.styleSheets[0] && document.styleSheets[0].addRule)
{
    // Add it to all elements
    document.styleSheets[0].addRule('*', 'behavior: url(/iepngfix.htc)');

window.onload = contentHack;
}

function contentHack()
{
/// IE hack
var cont = document.getElementById('content');
var cont_left = document.getElementById('content_left');
var cont_right = document.getElementById('content_right');

cont_left.style.height = (cont.clientHeight - 19) + 'px';
cont_right.style.height = (cont.clientHeight - 19) + 'px';
}