<!--// Remove outlines from anchor links in IE
/*    syntax for removing the annoying outline IE puts in code  */
function blurMe() {
	this.blur();
}
function blurLinks() {
	if (!document.getElementById) {
		return;
	}
	links = document.getElementsByTagName("a");
	for (i=0; i<links.length; i++) {
		links[i].onfocus = blurMe;
	}
}
-->
