var currentImage2;
var currentIndex2 = -1;
var interval2;
function showImage2(index2){
    if(index2 < $('#bigPic2 img').length){
        var indexImage2 = $('#bigPic2 img')[index2]
        if(currentImage2){   
            if(currentImage2 != indexImage2 ){
                $(currentImage2).css('z-index',2);
                clearTimeout(myTimer2);
                $(currentImage2).fadeOut(250, function() {
                    myTimer2 = setTimeout("showNext2()", 8000);
                    $(this).css({'display':'none','z-index':1})
                });
            }
        }
        $(indexImage2).css({'display':'block', 'opacity':1});
        currentImage2 = indexImage2;
        currentIndex2 = index2;
        $('#bigPicthumbs2 li').removeClass('active');
        $($('#bigPicthumbs2 li')[index2]).addClass('active');
    }
}
 
function showNext2(){
    var len2 = $('#bigPic2 img').length;
    var next2 = currentIndex2 < (len2-1) ? currentIndex2 + 1 : 0;
    showImage2(next2);
}
 
var myTimer2;
 
$(document).ready(function() {
    myTimer2 = setTimeout("showNext2()", 8000);
    showNext2(); //Load first image
    $('#bigPicthumbs2 li').bind('click',function(e){
        var count2 = $(this).attr('rel');
        showImage2(parseInt(count2)-1);
    });
});


