/*  --	Windows Stylesheet		-- */
//alert(navigator.userAgent);

if (navigator.userAgent.indexOf("Windows") != -1) {
	head = document.getElementsByTagName('head');	
	link = document.createElement('link');

	link.setAttribute('media', 'screen');
	link.setAttribute('href', "windows.css");
	link.setAttribute('rel', 'stylesheet');

	head[0].appendChild(link);
}


/*  --	defaultStatus			-- */

defaultStatus = "Hart Nelson | Tutoring, Test Prep, and Homeschooling in New York City" 



/* --	blurAnchors				-- */

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