	
	/******************************************************************
	 * This file contains all the scripts needed on every page.
	 *****************************************************************/
	 
	/*************************************
	* Activate the scripts
	*************************************/	
	window.onload = activate;
	
	function activate() {
		blurLinks();
		initialize();
	}
			
	/************************************************************
	* blurLinks
	* (Get rid of annoying dotted lines around clicked links)
	*************************************************************/
	function blurLinks() {
		var links = document.getElementsByTagName('a');
		for (var i = 0; i < links.length; i++) { 
			currentLink = links[i];
			currentLink.onfocus = function() { this.blur(); };
		}
	}
	
	
	