// sidebar

Event.observe(window,'load',function(){
	var headerHeight = $$('.header')[0].offsetHeight;
	var theContainer = $$('div.container')[0].offsetHeight - headerHeight;
	var theMainContent = $$('div.main-content')[0].offsetHeight;
	var theHeight = Math.max(theContainer,theMainContent);
	//$$('.sidebar')[0].style.height = (document.body.scrollHeight || document.documentElement.scrollHeight) - 47 - 24 + 'px';
	if(document.all){
		$$('.sidebar')[0].style.height = theHeight + 109 + 'px';
		$$('.main-content')[0].style.height = theHeight + 2 + 'px';
	}else{
		$$('.sidebar')[0].style.height = theHeight + 109 + 'px';
		$$('.main-content')[0].style.height = theHeight + 'px';
	}
});

