﻿// See http://code.google.com/p/slideshow/wiki/Slideshow#Options: See 1st note in 'Notes' section on using loader files.

function defineSlideshow() {
    //alert('defineSlideshow()');
    if (document.getElementById('divSlideShow')) {
        var data = {
            'a.jpg': { caption: '<img src="./Assets/spacer.gif" alt="" height="1" width="10" border="0" align="left" /><strong>Alcohol and driving is a deadly mix.</strong>' },
            'b.jpg': { caption: '<img src="./Assets/spacer.gif" alt="" height="1" width="10" border="0" align="left" />Although you may feel that you are OK to drive...' },
            'c.jpg': { caption: '<img src="./Assets/spacer.gif" alt="" height="1" width="10" border="0" align="left" />...if you are over the limit you will still get arrested. ' },
            'd.jpg': { caption: '<img src="./Assets/spacer.gif" alt="" height="1" width="10" border="0" align="left" />Having a police record can haunt you for the rest of your life...' },
            'e.jpg': { caption: '<img src="./Assets/spacer.gif" alt="" height="1" width="10" border="0" align="left" />...if you still have a life after the crash.' },
            'f.jpg': { caption: '<img src="./Assets/spacer.gif" alt="" height="1" width="10" border="0" align="left" />You might get lucky and suffer only some permanent injury.' },
            'g.jpg': { caption: '<img src="./Assets/spacer.gif" alt="" height="1" width="10" border="0" align="left" />Is that drink worth worth it to your family?' },
            'h.jpg': { caption: '<img src="./Assets/spacer.gif" alt="" height="1" width="10" border="0" align="left" />Cops are cracking down on drunk drivers for good reason.' },
            'i.jpg': { caption: '<img src="./Assets/spacer.gif" alt="" height="1" width="10" border="0" align="left" />For your friends, your family, and yourself - don\'t drink and drive.' }
        }
        var myShow = new Slideshow.KenBurns('divSlideShow', data, {
            captions: true,
            controller: false,
            delay: 5000,
            duration: 3000,
            height: 400,
            loader: false,
            hu: './Assets/Slideshow/',
            titles: true,
            width: 800 
            });
    }
}

if (window.addEventListener) // W3C standard approach
{
    window.addEventListener('load', defineSlideshow, false); // Note that this event name is 'load' not 'onload'
}
else if (window.attachEvent) // Microsoft approach
{
    window.attachEvent('onload', defineSlideshow);
}


