function mailrender()
  {
  var mail_link  = document.getElementById( "maillink" );
  var mail_dres  = "info" + "@" + "lostheartproductions.com";
  mail_link.href = "mailto:" + mail_dres;
  mail_link.innerHTML = mail_dres;
  }

var t;
var c       = 1.00;
var max_id  = 3
var fade_id = max_id;
var reset   = 0;
var we_wait = 1;

function fade_away()
  {
  if( we_wait == 1 )
    {
    we_wait = 0;
    t = setTimeout( "fade_away();", 5000 );
    }
  else if( reset == 1 )
    {
    if( document.getElementById( "header_" + fade_id ).style.MozOpacity >= 1.00 )
      {
      document.getElementById( "header_2" ).style.MozOpacity = 1.00;
      c     = 1.00;
      reset = 0;
      t = setTimeout( "fade_away();", 5000 );
      }
    else
      {
      c = c + 0.04;
      document.getElementById( "header_" + fade_id ).style.MozOpacity = c;
      t = setTimeout( "fade_away();", 40 );
      }
    }
  else if( document.getElementById( "header_" + fade_id ).style.MozOpacity <= 0.01 )
    {
    document.getElementById( "header_" + fade_id ).style.MozOpacity = 0.00;
    if( fade_id == 2 )
      {
      reset   = 1;
      c       = 0.00;
      fade_id = max_id;
      document.getElementById( "header_" + max_id ).style.MozOpacity = 0.00;
      }
    else
      {
      fade_id = fade_id - 1;
      c = 1.00;
      }
    t = setTimeout( "fade_away();", 5000 );
    }
  else
    {
    c = c - 0.04;
    document.getElementById( "header_" + fade_id ).style.MozOpacity = c;
    t = setTimeout( "fade_away();", 40 );
    }
  }

function stopCount()
  {
  clearTimeout(t)
  }

function show_menu( menu_id, link_id )
  {
  var this_menu = document.getElementById( "academics_menu" );
  this_menu.style.visibility = "hidden";
  this_menu.style.top = "-1000px";
  this_menu = document.getElementById( "resources_menu" );
  this_menu.style.visibility = "hidden";
  this_menu.style.top = "-1000px";
  //this_menu = document.getElementById( "events_menu" );
  //this_menu.style.visibility = "hidden";
  //this_menu.style.top = "-1000px";

  var this_link = document.getElementById( "acadlink" );
  this_link.setAttribute( "onclick", "show_menu( 'academics_menu', 'acadlink' );" );
  this_link = document.getElementById( "resolink" );
  this_link.setAttribute( "onclick", "show_menu( 'resources_menu', 'resolink' );" );
  //this_link = document.getElementById( "evntlink" );
  //this_link.setAttribute( "onclick", "show_menu( 'events_menu', 'evntlink' );" );

  this_menu = document.getElementById( menu_id );
  this_menu.style.top = "169px";
  this_menu.style.visibility = "visible";
  this_link = document.getElementById( link_id );
  this_link.setAttribute( "onclick", "kill_menu( '" + menu_id + "', '" + link_id + "' );" );
  }

function kill_menu( menu_id, link_id )
  {
  var this_menu = document.getElementById( menu_id );
  this_menu.style.visibility = "hidden";
  this_menu.style.top = "-1000px";
  var this_link = document.getElementById( link_id );
  this_link.setAttribute( "onclick", "show_menu( '" + menu_id + "', '" + link_id + "' );" );
  }