function slideSwitchIndex2() {

    var j = jQuery.noConflict();

    var jactiveIndex2 = j('#slideshowIndex2 DIV.activeIndex2');

    if ( jactiveIndex2.length == 0 ) jactiveIndex2 = j('#slideshowIndex2 DIV:lastIndex2');

    // use this to pull the divs in the order they appear in the markup
    var jnext =  jactiveIndex2.next().length ? jactiveIndex2.next()
    : j('#slideshowIndex2 DIV:first');

    // uncomment below to pull the divs randomly
    // var jsibs  = jactive.siblings();
    // var rndNum = Math.floor(Math.random() * jsibs.length );
    // var jnext  = j( jsibs[ rndNum ] );


    jactiveIndex2.addClass('last-activeIndex2');

    jnext.css({
        opacity: 0.0
    })
    .addClass('activeIndex2')
    .animate({
        opacity: 1.0
    }, 1000, function() {
        jactiveIndex2.removeClass('activeIndex2 last-activeIndex2');
    });
}

j(function() {
    setInterval( "slideSwitchIndex2()", 3000 );
});

