$(document).ready(function()
{
	//the most commonly used options are likely to be align, size and labels, closely followed
	//by fadeIn and inactivity (the other options are probably for the more advanced user)
	var opts =
	  // horizontal Dock with images expanding downwards in the vertical axis...
	  { align: 'top'
	  // set the maximum minor axis (vertical) image dimension to 48px
	  , size: 64
	  // add labels..
	  , labels: 'bc'
	  // swap the GIF extension for PNG extension for the larger image...
	  , source: function(i){ return this.src.replace(/gif$/,'png'); }
	  };
	$('#jq-dock').show();
	$('#jq-dock .bodytext').jqDock(opts);
});
