//*********************
// Anchor Constructor *
//*********************
function Anchor()
{	
	// get id's
	this.page	= document.getElementById('page');
	
	// get tags
	this.anchors	= this.page.getElementsByTagName('a');
}

//*************************
// Function anchor events *
//*************************
Anchor.prototype.events = function()
{	
	for (var a=0;a<this.anchors.length;a++)
	{
		var anchor = this.anchors[a];
		
		anchor.onfocus = function()
		{
			this.blur();
		}
	}
}