$(document).ready(function(){

	// see http://www.wizzud.com/jqDock/
	var opts =
		{ align: 'bottom'
		  // set the maximum minor axis (vertical) image dimension
		, size: 33
		  // add labels..
		, labels: true
		  // swap the GIF extension for PNG extension for the larger image...
		//, source: function(i){ return this.src.replace(/.jpg$/,'_small.jpg'); }
	};

	
	jQuery(document).ready(function(){
		  jQuery('#jDockMenu').jqDock(opts);
	});

});