    <?php
    // Define the template,must be in 'jGallery2/templates/'
    define( 'JGALL_TEMPLATE' , 'nautilus' );

    // Define the language, must be in 'jGallery2/language/'
    define( 'JGALL_LANGUAGE' , 'english' );

    // Define weither you want to cache large images
    // 0 for no, 1 for yes
    define( 'JGALL_SAVE_LARGE_THUMBS' , 0 );

    // Define the size of the thumbnails in the gallery
    define( 'JGALL_THUMBNAIL_SIZE' , 118 );

    // Define the thumbnail display mode
    // 'OAR' for original aspect ratio
    // 'RS' for resized cropped square
    // 'ZS' for zoomed-in square
    define( 'JGALL_THUMBNAIL_DISPLAY_MODE' , 'OAR' );

    // Define the number of thumbnail columns
    define( 'JGALL_THUMBNAIL_COLS' , 4 );

    // Define the number of thumbnail rows
    define( 'JGALL_THUMBNAIL_ROWS' , 3 );

    // Define the number of characters in filenames under thumbnails
    define( 'JGALL_FILENAME_LENGTH' , 18 );

    // Define the size of images in image-view mode
    define( 'JGALL_VIEW_IMG_SIZE' , 550 );

    // Define what divides the breadcrumb links in the location bar (left top)
    define( 'JGALL_BREADCRUMB_DEVIDER' , ' / ' );

    // Define what divides the page links in the page link bar
    define( 'JGALL_PAGELINK_DEVIDER' , ' | ' );

    // Define include path for inclusion.
    // Path must be relative to the page you include it in
    // For example 'scripts/PHP/jGallery2/'
    define( 'JGALL_INC_PATH' , 'jGallery2/' ); 

    // Include jGallery
    include( JGALL_INC_PATH . 'index.php' );
    ?>