function blurAnchors() {
	if (document.getElementsByTagName) {
		var a = document.getElementsByTagName("a");
		//collect all anchors A 
		for (var i = 0; i < a.length; i++) {
			// mouse onfocus, blur anchors 
			a[i].onfocus = function() { this.blur(); };
		}
	}
}

$(document).ready(function() {

	blurAnchors();

	$(".section").hover(
		function() {
			$(this).toggleClass("sectionHover");
		},
			function() {
				$(this).toggleClass("sectionHover");
			}
	);
});
