function MenuMouseOver( target )
{
  target.className = 'menuoptionhover';
}
function MenuMouseOut( target )
{
  target.className = 'menuoption';
}
function MenuClick( desturl )
{
  window.location = desturl;
}
function ContentSectionOver( target )
{
  target.className = 'contentsectionover';
}
function ContentSectionOut( target )
{
  target.className = 'contentsection';
}