Skip to Content
X 0000 / Y 0000
    ^5###########?
  ^5&@@@@@@@@@@@@J
~P@@@@@@@@@@@@@@@J
#@@@@@@&BBBBBBBBBP??????!
B@@@@@@B         .&@@@@@@G
B@@@@@@B         .&@@@@@@P
B@@@@@@B         .&@@@@@@P
B@@@@@@B         .&@@@@@@P
#@@@@@@B.        :&@@@@@@P
!77777!G#########@@@@@@@P
       5@@@@@@@@@@@@@@&Y:
       P@@@@@@@@@@@@#J:
       JBGGGGGGGGGGJ.
 
//
Prepare
pages...
var
pagesToLoad
=
[
  'vision',
  'portfolio',
  'people',
  'content',
  'careers',
  'contact',
];
 
function
load()
{
  showLoader();
  loadPages(pagesToLoad,
onPagesLoaded);
}
 
function
onPagesLoaded()
{
  hideLoader();
 
  //
Show
intro
if
first
time,
otherwise
show
content
  if(firstTime)
{
    showIntro();
}
else
{
    showContent();
}
}
 
//
Loading
website...
load();