//Number of pages, there should be a slide[a] for a = 1 to n slides. Example slide1.jpg, slide2.jpg... note only support jpgs at the moment.
ccJQuerySS_pages = 10;
//Second to show before tween to next screen.
ccJQuerySS_Interval = 4;
//Fade out/Fade in time in ms;
ccJQuerySS_FadeTime = 800;

//Start with a random first page (e.g. might start with slide3 and then interate incrementally
ccJQuerySS_RandomStart = true;
ccJQuerySS_Random = false;



/* Links for each slide...
 * the oject literals (1, 2, etc...) specify which slide the link(s) should be on.
 * This along with the position in the object literal array, is used to create a link with an unique id to be used with the style sheet..
 *
 * below divs are created with ids
 * ccJquerySlideShow_link_1_0
 * ccJquerySlideShow_link_1_1
 * ccJquerySlideShow_link_2_0
 * ccJquerySlideShow_link_3_0
 * ccJquerySlideShow_link_4_0
 *
 * ccJquerySlideShow_link_1_1 is a div with a child anchor tag that points to 'http://preview.anambrausa.org'
 * where as ccJquerySlideShow_link_1_0 is a div child anchor tag that points to 'http://preview.anambrausa.org'
 * and so on....
 *
 *Styles should always be reference as #ccJquerySlideShow_link_1_0 a {} in the style sheet
 * See slide.css for more...
 */
ccJQuerySS_Button_Names = {
    1: '&nbsp;',
    2: '&nbsp;',
    3: '&nbsp;',
    4: '&nbsp;',
	5: '&nbsp;',
	6: '&nbsp;',
    7: '&nbsp;',
    8: '&nbsp;',
    9: '&nbsp;',
	11: '&nbsp;'
}

ccJQuerySS_links = {
    1 : new Array('/public/mission.aspx'),
    2 : new Array('/public/mission.aspx'),
	3 : new Array('/public/mission.aspx'),
	4 : new Array('/public/mission.aspx'),
	5 : new Array('/public/mission.aspx'),
	6 : new Array('/public/news.aspx'),
    7 : new Array('/public/news.aspx'),
	8 : new Array('/public/news.aspx'),
	9 : new Array('/public/news.aspx'),
	10 : new Array('/public/news.aspx')
 };



/**
 * Define closures on start of fadeout...
 * You can use ccJquerySS_FadeTime to time your fades
 */


ccJquerySS_Callbacks = {
//    1: eisChanger
};



