function init() {
	if (TransMenu.isSupported()) {
		TransMenu.initialize();
		menu_about.onactivate = function() {document.getElementById('about').className = 'hover'; };
		menu_about.ondeactivate = function() {document.getElementById('about').className = ''; };

	}
}

if (TransMenu.isSupported()) {
	var ms = new TransMenuSet(TransMenu.direction.down, 1, 0, TransMenu.reference.bottomLeft);

	var menu_about = ms.addMenu(document.getElementById("about"));
		menu_about.addItem("History","http://www.pennlawfirm.com/history.php","");
		menu_about.addItem("Privacy Policy","http://www.pennlawfirm.com/privacy.php","");

	TransMenu.renderAll();
}
