function centerSplash() {
  var height;
  var mTop;
  
  if (window.innerHeight) height = window.innerHeight;
  else if (document.body.clientHeight) height = document.body.clientHeight;
  
  pTop = ((height-681)/2);
  var cnt = document.getElementById('container');
  cnt.style.paddingTop=pTop+'px';
}


$(document).ready(function() {
//  centerSplash();
  $('#topbar .inner').tabs({
    collapsible:true,
    selected:-1,
    fx: {
      opacity: 'toggle',
      duration: 500
    }
  });
  $('#content').click(function() {
    if ($('.ui-tabs-selected').length)
      $('#topbar .inner').tabs( "select" , -1 );
  })
  
  $('#close').click(function() {
    $('#topbar .inner').fadeOut(1000, function() {
      $('.trigger').show();
    })
    return false;
  });
  $('.trigger').hover(function() { $('#topbar .inner').fadeIn('slow'); });
  setTimeout(function(){ $('#topbar .inner').fadeIn(1000); }, 2000);
});
