/*-------------------------------------------*\
    http://www.pewe-llc.com/js/slideshow.js
    Slideshow jQuery
    Web Development by Johnny Luangphasy
\*-------------------------------------------*/

$(document).ready(function () {

    // insert p.caption after #industries_served_slideshow
    $('#industries_served_slideshow').after('<p class="caption"></p>');

    // p.caption css
    $('#industries_served p.caption').css({
        'padding' : '5px',
        'background-color' : '#fff12d',
        'font-size' : '16px',
        'font-style' : 'italic',
        'text-align' : 'center',
        'text-transform' : 'uppercase'
    });

    // slideshow settings
    $('#industries_served_slideshow').cycle({
        fx:     'fade',
        speed:  'slow',
        before: function () {
                    $('#industries_served p.caption').html(this.alt);
                }
    });

});
