  jQuery(function($){

    //apply jqDock to each of the demo menus, setting varying options for each one...
    $('div.demo').each(function(i){ //opts updated so as not to use null as 'don't override default' - jQuery v1.2.5 changed extend() to not ignore nulls!

var opts = {
align:  'right' //default
, size: 35  //default
, distance: 54  //default
, coefficient:  1  //default
, labels: false  //default
, duration: 500 //default
	};
        $(this).jqDock(opts);
      });
  });