$(document).ready(function() {
	//Page Borders
	var h = $('#page_CONTENT').height();
	$('#border_L').css('height',h+'px');
	$('#border_R').css('height',h+'px');
	//Quicklinks
	var qh = $('#boxCQ').height();
	$('#boxLQ').css('height',qh+'px');
	$('#boxRQ').css('height',qh+'px');
	//Poll
	var ph = $('#boxCP').height();
	$('#boxLP').css('height',ph+'px');
	$('#boxRP').css('height',ph+'px');
	//Main Content
	var mh = $('#boxCM').height();
	$('#boxLM').css('height',mh+'px');
	$('#boxRM').css('height',mh+'px');
	//Mayors RSS
	var rss = $('#boxCR').height();
	$('#boxLR').css('height',rss+'px');
	$('#boxRR').css('height',rss+'px');
});