window.onload = function ()
{
	try
	{
		document.execCommand("BackgroundImageCache", false, true);
	} catch(err) {}
	
	navLinks = document.getElementsByTagName('a');
	if(navLinks)
	{
		for (i=0; i<navLinks.length; i++) {
			node = navLinks[i];
			node.onfocus=function(){
				if(this.blur)this.blur();
			}
		}
	}
}