// JavaScript Document
jQuery(document).ready(function($){
  // set up the options to be used for jqDock...
  var dockOptions =
    { align: 'down' // horizontal menu, with expansion DOWN from a fixed TOP edge
    , size: 55 //increase 'at rest' size to 60px
    , labels: 'tc'  // add labels (defaults to 'br')
    };
  // ...and apply...
  $('#menu').jqDock(dockOptions);
});
