jQuery(function($){
$('div.demo').each(function(i){
    var opts = { align:        [ 'bottom', 'right', 'top' , 'middle', 'left', 'center' ][i] || 'bottom' //default
               , size:         [  155     ,  155    ,  155   ,  155     ,  155   ,  155      ][i] || 200       //default
               , distance:     [  160     ,  160    ,  160   ,  160     ,  148   ,  160      ][i] || 185       //default
               , coefficient : [  1.5    ,  1.5   ,  1.5  ,  1.5      ,  1.5  ,  1.5     ][i] || 2.0      //default
               , labels:       [  true   ,  'mc'  ,  true ,  'br'   ,  true ,  false   ][i] || false    //default
               , duration:     250
               , source:       (i==0 || i==6) ? function(i){ return (this.alt) ? false : this.src.replace(/(jpg|gif)$/,'png'); } : false //default
               };
    $(this).jqDock(opts);
  });
});
