/*
 * Default Options...
 *  {
        randomStart: true,
        random: false,
        pages:0,
        interval: 8,
        fadeTime: 800,
        callbacks:{}
    }
 *
 * ccJquerySlideShow.config... needs number of pages and a config (key is pagenumber) for each one....
 *
 *
 */

ccJquerySlideShow.config = {
    pages: 7,
    interval: 8,
    callbacks: {
        'a': function(){
            //Example of a running callback, such as eischanger for department of science.
            //console.log('running callback');
        }
    },
    1: {
        buttonName: '&nbsp;',
        links: ['http://www.mun.ca/become/undergrad/'],
        top: 284,
        left: 14
    },
    2: {
        buttonName: '&nbsp;',
        links: ['http://www.mun.ca/become/undergrad/'],
        top: 284,
        left: 27
    },
    3: {
        buttonName: '&nbsp;',
        links: ['http://www.mun.ca/become/undergrad/'],
        top: 284,
        left: 40
    },
    4: {
        buttonName: '&nbsp;',
        links: ['http://www.mun.ca/become/graduate/'],
        top: 284,
        left: 53
    },
    5: {
        buttonName: '&nbsp;',
        links: ['http://www.mun.ca/become/graduate/'],
        top: 284,
        left: 66
    },
    6: {
        buttonName: '&nbsp;',
        links: ['http://www.delts.mun.ca/'],
        top: 284,
        left: 79
    },
    7: {
        buttonName: '&nbsp;',
		links: ['http://www.dareto.ca'],
        top: 284,
        left: 92
    }
}


/*
 * Initialize the slideShow.
 * ccJquerySS_basepath is set externally to point to correct slideshow (e.g. see builder instances of checking existence).
 */
$(document).ready(function(){
    ccJquerySlideShow.basepath = ccJQuerySS_basepath;
    ccJquerySlideShow.init();
})





