// JavaScript Document
pic1 = new Image()
pic1.src = 'pics/butBackL.jpg'
pic2 = new Image()
pic2.src = 'pics/butHighL.jpg'
function setAct(ref) {
	ref.className = "act"
	return true
}
function unSet(ref) {
	ref.className = "but"
	return true
}
function setAct2(ref) {
	var x = document.getElementById(ref)
	x.className = "act"
}
function unSet2(ref) {
	var x = document.getElementById(ref)
	x.className = "butTop";
}
function hide() {
	var x = document.getElementById("flyer")
	x.style.visibility = "hidden"
}
