// ****************************
// ST GEORGE HEALTHCARE GROUP
// --------------------------
// (c) SKILL ZONE LTD, 2010
// ****************************
window.onload = Initialise ;

function Initialise()
  {
  var a = new Array() ;
  a[1] = "hospitals" ;
  a[2] = "future" ;
  a[3] = "galleries" ;
  a[4] = "careers" ;

  for( j=1; j<=a.length; j++ )
    {
    if( document.cookie.indexOf( "display." + a[j] + "=block" ) > -1 )
      {
      document.getElementById( a[j] ).style.display = "block" ;
      }
    else
      {
      document.getElementById( a[j] ).style.display = "none" ;
      }
    }
  }


function Toggle( id )
  {
  var h = document.getElementById( id ) ;
  
  if( h.style.display == "block" )
    {
    h.style.display = "none" ;
    }
  else
    {
    h.style.display = "block" ; 
    }

  document.cookie = "display." + id + "=" + h.style.display + "; path=/" ; 
  return false ;
  }

