﻿jQuery(document).ready(function() {
    var options = {
                      // horizontal Dock with images expanding downwards in the vertical axis...
                      align: 'bottom',
                      // coefficient controls the relationship between the distance from the
                      //  cursor and the amount of expansion of any affected image within that distance
                      coefficient: 1,
                      // set the maximum minor axis (vertical) image dimension
                      size: 48
                  };

    if (jQuery("#IconDock")) {
        jQuery("#IconDock").jqDock(options);
    }
});
