// JavaScript to handle showing and hiding a drop down
// Created by Tim Ottewell on 07/01/2009

function showDropDown()
{
	document.getElementById("dropDown").style.display = "block";
}

function hideDropDown()
{
	document.getElementById("dropDown").style.display = "none";
}
