$(function(){
  $('#container').css('top', ($('#container #header a').offset().top * -1));

  $('a.studio').click(function(event){
    event.preventDefault();
    var to    = ($('#container').offset().top < 0 ) ? 0 : ($('#container #header a').offset().top * -1);
    $('a.studio').toggleClass('open');
    $('#container').animate({'top': to}, 'slow', null);
  })

  $('#center .menu ul').accordion({header:'h3', collapsible: true, autoHeight: false, active:$('.menu h3').index($('.menu h3.selected')), fillSpace: false})
  $('.mosaic td.cell').hover(function(){$(this).fadeOut(150);$(this).fadeIn(300);})
})
