/**
 * @file
 * Custom javascript utilities.
 * 
 * @author Shannon M. Rause <shannon.rause@creativeflavor.com>
 * @version $Revision: 1.1.1.1 $
 * @version $Name:  $
 * @version $Id: main.js,v 1.1.1.1 2010/11/06 18:45:56 sitegen Exp $
 *
 * $Copyright$
 */

// Remove and re-add video
function stopVideo(whichPlayer)
{
   reAddVideo = $('#video-button' + whichPlayer + ' > .video-block').clone(true);
   $('#video-button' + whichPlayer + ' > .video-block').remove();
   $('#video-button' + whichPlayer).append(reAddVideo);
   $('#video-button' + whichPlayer + ' > .video-block').css('display', 'none');
}
