// JavaScript Document

function awardDown()  {
	if (document.getElementById) {
		document.getElementById('awards').style.top = "0px";
	}
}

function awardUp()  {
	if (document.getElementById) {
		document.getElementById('awards').style.top = "-62px";
	}
}