// index.tpl.php
jQuery(document).ready(function($){
	$('#weather').weatherfeed(['DRXX0022'], {unit: 'f', highlow: false, wind: false});
	$('.vertical_line').css('left', $('.vertical_line').position().left + 212);
	$('.coordinates').css('left', $('.coordinates').position().left + 207);
	
	var height = 0;
	$('.boxes .box').each(function() {
		height = Math.max(height, $(this).height());
	}).find('.content').css('height', height);
});
