jQuery(document).ready(function(){

    jQuery('.flv_control a').bind('click', function() {
        thisvideo = jQuery(this).attr('alt');
        // STOP
        obj=jQuery('#videoCarousel .videobox');
        l=obj.length;
        var i=0;
        for (i=0;i<l;i++)
        {
            vindex = 'myVideo' + i;
            document.getElementById(vindex).SetVariable("player:jsStop", "");
        }
        jQuery('.flv_video').fadeOut('');
        jQuery('#videoDiv' + thisvideo).fadeIn('slow');
    });
})




