﻿$(function() {
    // Homepage - Image slider (Sslide)
    $('#slides').slides({
        play: 10000,
        pause: 2500,
        hoverPause: true,
        preload: true,
        preloadImage: '/OneStopCMS/Sites/BupaFoundation/Theme/images/loading.gif',
        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);
        }
    });
    
    // Adjust height of headings to align right hand column
    var sideSectionB = $('#MainControl_sideSectionB ');
    var height = $('.breadcrumbOuter').outerHeight() + $('#pageTitleContainer').outerHeight();
    sideSectionB.css('padding-top', height);

    // Use the UI plugin to create the accordion effect on the general content page
    $("#accordion").accordion({ header: '.accordianTitle' });
});


