// 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 = "-490px";
}
function contractBottomFlash(){
	document.getElementById("footer").style.height = "130px";
	document.getElementById("footer").style.marginTop = "-90px";
}