var current=1;
var TV=false;
var Inter;
function GoVideo()
{
TV = true;
$('TVButton').style.display = 'none';
$('MovieDiv').style.display = 'block';
$('Rotator').style.display = 'none';
play_blip_movie_1924449();
}


function NextImage()
{
if (!TV)
{
clearInterval(Inter);
}
GoToNextImage();
}


function GoToNextImage()
{
if (!($('Rotator')))
{
return;
}

TV = false;
current += 1;
if (current > 13)
{
current = 1;
}

for (t=1;t<=13;t++)
{
if (t==current)
{
$('Rotator' + t).style.display = 'block';
}
else
{
$('Rotator' + t).style.display = 'none';
}
}

$('MovieDiv').style.display = 'none';
$('Rotator').style.display = 'block';
$('TVButton').style.display = 'block';
}

function SlideShow()
{
if (!TV)
{
GoToNextImage();
}
}

Inter = setInterval(SlideShow, 5000);