// JavaScript Document
var runOnLoad = new Array(); // for queuing multiple onLoad event functions
window.onload = function() 
{ 
	for(var i=0; i < runOnLoad.length; i++) 
		runOnLoad[i]() 
}
// hide dotted :focus outlines when mouse is used
// but NOT when tab key is used
if(document.getElementsByTagName)
for(var i in a = document.getElementsByTagName('A')) 
{
  a[i].onmousedown = function() 
  {
    this.blur(); // most browsers
    this.hideFocus = true; // ie
    this.style.outline = 'none'; // mozilla
  }
  a[i].onmouseout = a[i].onmouseup = function() 
  {
    this.blur(); // most browsers
    this.hideFocus = false; // ie
    this.style.outline = null; // mozilla
  }
}

