// DOM Ready
$(function() {
	if ($('#sidebar, #sidebarjoin, #sidebarnews').height() < $('#content').height()) {
		$('#sidebar, #sidebarjoin, #sidebarnews').height($('#content').height());
	} else if ($('#content').height() < $('#sidebar, #sidebarjoin, #sidebarnews').height()) {
		$('#content').height($('#sidebar, #sidebarjoin, #sidebarnews').height());
	}			   
});