// JavaScript Document
// Hide Scrambled Email instructions if JavaScript is enabled.

function hideSection () {
	if (!document.getElementById) return false;
	var container = document.getElementById("scrambledEmail");
	addClass(container, "hiddenSection");
}

addLoadEvent(hideSection);