(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, #logo',{top:0,opacity:1},function(){ $(this).css('filter',''); }],
      'M':['#menu',{top:69}],
      '1':['#i1',{opacity:1,left:-232}],
      '2':['#i2',{opacity:1}],
      '3':['#i3',{opacity:1,top:-87}],
      'F':['#flat-mask',{top:385}]
    };
    var timeline =
        'TTTTT    33333|'+
        ' 2222FFFFF|'+
        'MMMMMM111111';
    $(function(){ LB.timeline.perform(actions,timeline,4000); });
    document.write('<style type="text/css">'+
      '#photohead #i1 { left:0; opacity:0; filter:alpha(opacity=0); }'+
      '#photohead #i2 { opacity:0; filter:alpha(opacity=0); }'+
      '#photohead #i3 { top:0; opacity:0; filter:alpha(opacity=0); }'+
      '#photohead #flat-mask { display:block; }'+
      '#head #menu { top:-305px; }'+
      '#head #sitetitle { top:280px; opacity:0; filter:alpha(opacity=0); }'+
      '#head #logo { opacity:0; filter:alpha(opacity=0); }'+
   '</style>');
  } else {
    var actions = {
      'T':['#sitetitle, #logo',{opacity:1},'linear',function(){ $(this).css('filter',''); }],
      'M':['#menu',{top:10,opacity:1},'linear'],
      'W':['#white',{width:418,top:0},'linear'],
      '3':['#i3',{top:-187},'linear'],
      'B':['#blue',{opacity:0.5},'linear']
    };
    var timeline = 'T|M|W|3|B';
    $(function(){ LB.timeline.perform(actions,timeline,1600); });
    document.write('<style type="text/css">'+
      '#photohead #i3 { top:-87px; }'+
      '#photohead #white { width:230px; top:54px; }'+
      '#photohead #blue { opacity:0; filter:alpha(opacity=0); }'+
      '#head #menu { top:69px; opacity:0; filter:alpha(opacity=0); }'+
      '#head #sitetitle, #head #logo { opacity:0; filter:alpha(opacity=0); }'+
    '</style>');
  }
})();