// JavaScript Document

window.onload = function() {
	as = document.getElementsByTagName('A');
	for (i=0; i<as.length; i++) {
		/*
		if (ext = as[i].href.match(/\.gif|jpg|doc|docx|xls|xlsx|ppt|pptx|zip|pdf$/i)) {
			//as[i].className += " icon " + ext;
			as[i].className += " icon ";
		}
		*/
		if (as[i].href.match(/^http/) && !as[i].href.match(/gregvogl\.(net|com)/)) {
			as[i].className += " icon external";
		}
	}
}
