﻿// FUNCTIONS FOR THE TOP MENU

function expandMenu()
{
    window.status = "expand";
	document.getElementById('topMenu').style.height = "250px";
}

function contractMenu()
{
    window.status = "contract";
	document.getElementById('topMenu').style.height = "57px";
}