function setDiv() {
    if($('#secondary').length > 0) {
	var wh = document.getElementById('content').offsetHeight - document.getElementById('secondary').offsetHeight - 136
	var d = document.getElementById('gray') // Get div element
	var te = document.getElementById('primary').offsetHeight - document.getElementById('secondary').offsetHeight

	var dh = d.offsetHeight // div height
	d.style.height = te + 'px'; // Set div height to window height
    }
}

$(document).ready(function(){
    $("a[href*='http://']:not([href*='"+location.hostname+"'])").click(function(){
        pageTracker._trackPageview('/outgoing/'+ $(this).attr('href'));
    });

    $("#home a").click(function(){ pageTracker._trackPageview('/home/'+ $(this).attr('href')); });

    setDiv();
});