$(document).ready(function() {

    try {
        $('div#headerImagesRotator ul').animatedinnerfade({
            speed: 1000, // Fadingspeed in milliseconds or keywords (slow, normal or fast)(Default: ’normal’)
            timeout: 10000, // Time between the fades in milliseconds (Default: ’15000’)
            type: 'sequence', // Type of slideshow: ’sequence’ or ’random’ (Default: ’sequence’)
            containerheight: '300px',
            containerwidth: '950px',
            animationSpeed: 0, // Animation speed in miliseconds (default : 15000). Just set it to 0 to disable the slide effect
            animationtype: 'fade', // type of animation ’fade’ or ’slide’ (Default: ’fade’)
            bgFrame: 'none', //path to the frame to display under the view. (Default: ’none’)
            controlBox: 'auto', // ’none’ ’show’ (always visible) or ’auto’ (appears on mouse over)
            controlBoxClass: 'mycontrolboxclass', // CSS-Class which the container get’s applied or ’none’ (Default: ’none’)
            controlButtonsPath: '/_assets/animatedInnerFade/img_animatedInnerfade', // path for control buttons : previous.gif, pause.gif, play.gif and next.gif (default : ’img’)
            displayTitle: 'none', // display titles ? ’yes’ or ’none’. (default ’none’)
            titleClass: 'innerfade-title' // CSS class for title panel. (Default : ’innerfade-title’)
        });
    }
    catch (e) {
        return false;
    }

});              // end:DOM ready
