function toggleLinks()
{
	if (document.getElementById("dropDownLinks").style.display == "inline")
	{
		document.getElementById("dropDownLinks").style.display = "none";
	}
	else
	{
		document.getElementById("dropDownLinks").style.display = "inline";
	}
}