/*


Dynamic Application of Functions to DOM
*/
var _debugMode = false;
document.observe('dom:loaded', init);


function init () {
  //get rid of last hr right before footer in ie
  if (Prototype.Browser.IE) {
    var hr = $$('hr:last-child')[0];
    if (hr) hr.hide();
  }
  fadeTextIn();
}
