﻿$(function() {
    //Swap PageTitle text for Home
    $('.pageNavTitle a').text('Home');

    //Slider func
   
        $('#slides').slides({
            play: 7000,
            pause: 6500,
            hoverPause: true,
            generateNextPrev: true,
            animationStart: function(current) {
                $('.caption').animate({
                    bottom: -90
                }, 100);
                if (window.console && console.log) {
                    // example return of current slide number
                    console.log('animationStart on slide: ', current);
                };
            },
            animationComplete: function(current) {
                $('.caption').animate({
                    bottom: 50
                }, 200);
                if (window.console && console.log) {
                    // example return of current slide number
                    console.log('animationComplete on slide: ', current);
                };
            },
            slidesLoaded: function() {
                $('.caption').animate({
                    bottom: 50
                }, 200);
            }
        });




});
