$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 7,
        path: "slideshow_images/",
		//path: "slideshow_images/",  // Relative path with trailing slash.
        captions: {        // ATTN: USE \ before ' character to escape it        
1:'<b>Thank you for visiting Glen Ellyn School District 41</b><div style="font-size:10px;margin-top:5px;">Click the links below for the latest news...</div>',
2:'<b>Get New Student Registration Info and Forms</b><div style="font-size:10px;margin-top:5px;">Returning students please return registration packets!</div>',
3:'<b>Weather Forecasts, Alert information and more!</b>',
4:'<b>SIP Days happen 8 days throughout the school year</b>',
5:'<b>Click to the Online Parent Portal for Pinnacle</b><div style="font-size:10px;margin-top:5px;">Parents/guardians can access current scores on assignments and assessments</div>',
6:'<b>E-BackPack informs, and saves paper</b><div style="font-size:10px;margin-top:5px;">Info that once went home in backpacks, can now be found on E-BackPack!</div>',
7:'<b>Get the latest District 41 Board of Education Highlights</b>'
//7:'<b>See Hadley athletic schedules, school directions, activity fee info and more</b>'
        },
        links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"contactinfo.htm",
            2:"http://www.d41.org/registration.htm",
			3:"http://www.d41.org/emergencyweatherinfo.asp",
            4:"http://www.d41.org/news_sipdays.htm",
			//4:"http://www.d41.org/summer_readinglists.htm",
            5:"pinnacle_internet_viewer.htm",
            6:"http://www.d41.org/ebackpack.htm",
			7:"http://www.d41.org/agendas-etc.htm"
			//7:"schools/hadley/athletics.htm"
        },
        linksOpen:'newWindow',
        timerInterval: 9500, // 6500 = 6.5 seconds
	randomise: false // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#example_1_container').easySlides(myOptions);

})
