/* This moves blog headings to two lines and retains centrality if they strethc into two lines. */
/* See Robbie if questions */
/* Might now work in Opera, but will degrade nicely */

function CentreHeadings() {
  /* move blog heading central */
  var headings=document.getElementsByTagName("h2");
  for (i=0; i<headings.length; i++) {
    if (headings[i].className == "BlogHeading") {
      if (headings[i].offsetHeight > 35) {
          headings[i].style.lineHeight='14px';
          headings[i].style.paddingTop='3px';
      }
    }
    /* headings[i].style.visibility = 'visible';  */
  }
}

/* Add the event loader */
if (window.addEventListener){
  window.addEventListener('load', CentreHeadings, false);
} else if (window.attachEvent){
  window.attachEvent("onload", CentreHeadings);
}

