// JavaScript Document
function expandTopFlash(){
	document.getElementById("topNav").height = 500;
}
function contractTopFlash(){
	document.getElementById("topNav").height = 140;
}
function expandBottomFlash(){
	document.getElementById("footer").style.height = "530px";
	document.getElementById("footer").style.marginTop = "-420px";
}
function contractBottomFlash(){
	document.getElementById("footer").style.height = "110px";
	document.getElementById("footer").style.marginTop = "0px";
}