// JavaScript Document//this script nudges the page on load to line up with background
//(it's the little things...)
var cwidth = document.documentElement.clientWidth;
var calcwidth = cwidth%2;
if(calcwidth == 0){
var page = document.getElementById('page');
page.style.left="-1px";}

  var anchorTags;
  anchorTags = document.getElementsByTagName("a");
  for(var i = 0; i < anchorTags.length; i++) {
	anchorTags[i].setAttribute("title","");
	anchorTags[i].removeAttribute("title");
  }