/******************************************************************************
 *
 * Project:     Samuel Bitton Photography Website      
 * Author:      Samuel Bitton
 * Date:        22 Feb 2006
 * Description: Contains scripts for menu specific work.
 *
 *****************************************************************************/

/******************************************************************************
 *
 * Description: shows the specified dropdown menu
 *
 * Parameters: elmnt: the id of the menu to show
 *
 *****************************************************************************/
function showmenu(elmnt)
{
   document.getElementById(elmnt).style.visibility="visible";
}

/******************************************************************************
 *
 * Description: hides the dropdown menu
 *
 * Parameters: elmnt: the id of the menu to hide
 *
 *****************************************************************************/
function hidemenu(elmnt)
{
   document.getElementById(elmnt).style.visibility="hidden";
}
 
