facebook style comments

This commit is contained in:
Mike Macgirvin 2010-07-12 00:49:06 -07:00
parent 4e40156607
commit b0f8cd5fe6
3 changed files with 21 additions and 12 deletions

View file

@ -7,6 +7,14 @@
document.getElementById(theID).style.display = "block"
}
}
function openMenu(theID) {
document.getElementById(theID).style.display = "block"
}
function closeMenu(theID) {
document.getElementById(theID).style.display = "none"
}