// JavaScript Document
var pageInit

window.onload = function() 
{
	if(pageInit) {
		pageInit();
	}
	var aList = document.getElementsByTagName('a');
	for(var i=0;i<aList.length;i++) 
	{
			aList[i].onfocus = function() 
			{
				this.blur();
			}
		}
}
