//********************
// Page Constructor *
//********************
function Page()
{	
	// get id's
	this.page		= document.getElementById('page');
	
	// get tags
	this.anchors	= this.page.getElementsByTagName('a');
	
	// set blur event on all anchors
	this.setAnchorEvents();
}

//******************************
// Function page anchor events *
//******************************
Page.prototype.setAnchorEvents = function()
{	
	for (var a=0;a<this.anchors.length;a++)
	{
		var anchor = this.anchors[a];
		
		anchor.onfocus = function()
		{
			this.blur();
		}
	}
}