$(function(){
  $('.page .main').jScrollPane();
  $('.main').css({'visibility' : 'visible', 'display' : 'none'}).fadeIn(400);
  $('#cycle').cycle();
  $('#menu-primary li').hover(function() {
    $(this).find('ul').show().stop(false, false).animate({
      'top' : '-69px',
      'height' : '69px'
    }, 150);
  }, function() {
    $(this).find('ul').animate({
      'top' : '0px',
      'height' : '0px'
    }, 450, function() {
      $(this).hide();
    });
  })
});
