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