(function(){
  var htmlClass = document.getElementsByTagName('html')[0].className;
  if(/still/.exec(htmlClass)) return; // bail if page requests no animation
  if(/front/.exec(htmlClass)) {
  // Front page
    var actions = {
      T:['#sitetitle',{left:0}],
      M:['#menu',{top:75}],
      L:['#i-legs',{top:-29,opacity:1}],
      B:['#i-ball',{top:-48,opacity:1}],
      N:['#i-music',{top:-67,opacity:1}],
      R:['#i-run',{top:-5,opacity:1}],
      P:['#i-piano',{top:-5,opacity:1}],
      W:['#white',{top:0,opacity:0.33}],
      m:['#main',{opacity:1},function(){ $(this).css('filter',''); }],
      g:['#logo',{opacity:1}]
    };
    var timeline =
        'mmmmmmmmm|'+
        'PPPPP|'+
        '    RRRRR|'+
        '        NNNNN|'+
        '        MMMMM|'+
        '            BBBBB|'+
        '            WWWWW|'+
        '                LLLLL|'+
        '          TTTTTTTTTTTT|'+
        '          gggggggggggg';
    $(function(){ LB.timeline.perform(actions,timeline,3500); });
    document.write('<style type="text/css">'+
      '#photohead #i-legs {top:-340px; opacity:0; filter:alpha(opacity=0);}'+
      '#photohead #i-ball {top:300px; opacity:0; filter:alpha(opacity=0);}'+
      '#photohead #i-music {top:-402px; opacity:0; filter:alpha(opacity=0);}'+
      '#photohead #i-run {top:300px; opacity:0; filter:alpha(opacity=0);}'+
      '#photohead #i-piano {top:-421px; opacity:0; filter:alpha(opacity=0);}'+
      '#photohead #white {top:300px; opacity:0; filter:alpha(opacity=0);}'+
      '#head #sitetitle { left:-543px; }'+
      '#head #menu { top:-300px; }'+
      '#main { opacity:0; filter:alpha(opacity=0);}'+
      '#head #logo { opacity:0; filter:alpha(opacity=0);}'+
    '</style>');
  } else {
  // Other pages
    var actions = {
      T:['#sitetitle',{left:111},'linear'],
      t:['#sitetitle',{width:789},'linear'],
      M:['#menu',{top:10}],
      L:['#i-legs',{opacity:0.80},'easeOutBack'],
      B:['#i-ball',{opacity:0.80},'easeOutBack'],
      N:['#i-music',{opacity:0.80},'easeOutBack'],
      R:['#i-run',{opacity:0.80},'easeOutBack'],
      P:['#i-piano',{opacity:0.80},'easeOutBack'],
      W:['#white',{opacity:0.33},'easeOutBack'],
      g:['#logo',{opacity:1}]
    };
    var timeline =
        ' LLL|'+
        '         NNN|'+
        '                 BBB|'+
        '                 WWW|'+
        '                           RRR|'+
        '                                     PPP|'+
        'TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTttttttttttt|'+
        'ggggggggggggggggggggggggggggggggggggggggggg|'+
        '                            MMMMMMMMMMMMMMMMMMMMMM';
    $(function(){ LB.timeline.perform(actions,timeline,3000); });
    document.write('<style type="text/css">'+
      '#photohead #i-legs, #photohead #i-ball, #photohead #i-music, #photohead #i-run, #photohead #i-piano, #photohead #i-legs, #photohead #white { opacity:0; filter:alpha(opacity=0); }'+
      '#head #sitetitle {left:-543px; width:543px;}'+
      '#head #menu {top:300px;}'+
      '#head #logo { opacity:0; filter:alpha(opacity=0);}'+
    '</style>');
  }
})();
