$(document).ready(function() {
    HSInit();    
});
function HSInit() {
    hs.graphicsDir = hs_dir + '/graphics/';
    hs.expandCursor = 'zoomin.cur'; // null disables
    hs.restoreCursor = 'zoomout.cur'; // null disables
    hs.expandDuration = 250; // milliseconds
    hs.restoreDuration = 250;
    hs.marginLeft = 15;
    hs.marginRight = 15;
    hs.marginTop = 15;
    hs.marginBottom = 15;
    hs.zIndexCounter = 1001; // adjust to other absolutely positioned elements
    hs.loadingOpacity = 0.75;
    hs.allowMultipleInstances= false;
    hs.numberOfImagesToPreload = 5;
    hs.outlineWhileAnimating = 2; // 0 = never, 1 = always, 2 = HTML only
    hs.outlineStartOffset = 3; // ends at 10
    hs.padToMinWidth = false;
    hs.fullExpandPosition = 'bottom right';
    hs.align = 'center';
    hs.transitions = ['expand', 'crossfade'];
    hs.fadeInOut = true;
    hs.outlineType = 'rounded-white';
    hs.wrapperClassName = 'dark';
    hs.dimmingOpacity = 0.5;
    hs.showCredits = false;
}

