function init() {
	myCal.print()
	$('calendar').show()
	if ($('archive-list')) {
		$('archive-list').show()
	}
	if ($('username')) {
		$('username').focus()
	}
}
function toggleLineNumbers(id) {
	var codeNode = $(id)
	var list_children = codeNode.childNodes
	if (codeNode.nodeName == 'OL') {
		var list_element = document.createElement('pre')
	} else {
		var list_element = document.createElement('ol')
	}
	list_element.setAttribute('id',id)
	for (var i=0; i<list_children.length; i++) {
		if (list_children[i].firstChild) {
			if (list_children[i].nodeName == 'LI') {
				list_element.appendChild(list_children[i].firstChild.cloneNode(true))
				list_element.appendChild(document.createElement('br'))
			} else {
				list_element.appendChild(document.createElement('li')).appendChild(list_children[i].cloneNode(true))
			}
		}
	}
	codeNode.parentNode.replaceChild(list_element,codeNode)
}