$(document).ready(function () {
    $(function () {
        $(".rotator_small").jCarouselLite({
            btnNext: ".rotate_next",
            btnPrev: ".rotate_prev",
            visible: 1
        });
    });

    $(".doround").corner("5px");
    $(".doroundbottom").corner("5px bottom");
    $(".doroundtop").corner("5px top");

    $('#img_r2s1').cycle({
        fx: 'fade',
        speed: 'slow',
        timeout: 9000,
        pager: '.imagegallerypager.r2s1',
        pagerClick: function (zeroBasedSlideIndex, slideElement) {
            $('#img_r2s1').cycle('pause');
            $('#playpause').html('<' + 'img src="/guide/ebstsub/ffond/graphics/play.gif" alt="Play" title="Play"/>');
            $('#playpause').attr('class','play');
            $('#playpause').attr('title','Play');            
            return false;

/*        
            $('#txt_r2s1').cycle('stop');
            $('#txt_r2s1').cycle({
                fx: 'none',
                speed: 'slow',
                timeout: 9000,
                startingSlide: zeroBasedSlideIndex
            });
            $('#txt_r2s1').cycle('pause');            
*/            
        }
    });
    
/*    
    $('.imagegallerypager.r2s1').click(function () {      
      $('#img_r2s1').cycle('pause');
      return false;
    });
*/    
    
    $('#playpause').click(function () {      
        if ($('#playpause').attr('class') == 'pause') {
            $('#img_r2s1').cycle('pause');
            $('#playpause').html('<' + 'img src="/guide/ebstsub/ffond/graphics/play.gif" alt="Play" title="Play"/>');
            $('#playpause').attr('class','play');
            $('#playpause').attr('title','Play');
            return false;
        }
        else if ($('#playpause').attr('class') == 'play') {
            $('#img_r2s1').cycle('resume');
            $('#playpause').html('<' + 'img src="/guide/ebstsub/ffond/graphics/pause.gif" alt="Pause" title="Pause"/>');            
            $('#playpause').attr('class','pause');
            $('#playpause').attr('title','Pause');
            return false;
        }
    });



});


function showTab(whatTab, whatClass, whatCol) {
    $("." + whatClass).hide();
    $("#" + whatTab).show();
    $("." + whatCol + " .tabcontainer").removeClass("active");
    $("#" + whatTab + "link").addClass("active");
}
