// JavaScript Document

function sizeMe(){
	var nameHeight = jQuery("#logoHeader h1").height();
	nameHeight = ((185 - nameHeight)/2)-6;
	jQuery("#logoHeader h1").css({ "padding-top": nameHeight, "display": "block" });
	//alert(nameHeight);
}

// Use jQuery to remove properties from <font> tags and reformat the copyright table
$(document).ready(function() {
	$("font").attr({ face: "", color: "", size: "", style: "" });
	$("#copyrightWrap table").attr({ border: "0", width: "" });
	sizeMe();
});
