var videoplayerhidden = true;

function hideProductVideo()
{
    if($('flashVideoContainer') && $('embedFlashContainer') && $('image')) {
        $('flashVideoContainer').hide();
        $('embedFlashContainer').hide();
        $('image').show();
        $('flashVideoContainer').style.visibility = 'hidden';
        $('embedFlashContainer').style.visibility = 'hidden'
        $('image').style.visibility = 'visible';
        videoplayerhidden = true;
    }
}

function showProductVideo()
{
    if($('flashVideoContainer') && $('embedFlashContainer') && $('image')) {
        $('flashVideoContainer').show();
        $('embedFlashContainer').show();
        $('image').hide();
        $('flashVideoContainer').style.visibility = 'visible';
        $('embedFlashContainer').style.visibility = 'visible'
        $('image').style.visibility = 'hidden';
        videoplayerhidden = false;
    }
}

function toggleVideoImage()
{
    if(videoplayerhidden) {
        showProductVideo();
    } else {
        hideProductVideo();
    }
}

var ProductVideo = Class.create({
    initialize: function(element) {
        $(element).observe('click', function() {
            toggleVideoImage();
        });
    }
});

document.observe('dom:loaded', function(){
    stopVideo = function() {
        hideProductVideo();
    }
    thumbnails = $$('.catalog-product-view .more-views img.thumbnail');
    if(thumbnails) {
        thumbnails.each(function(imageObject){
            imageObject.observe('click', stopVideo);
        })
    }
})
document.observe('dom:loaded', function() {
    hideProductVideo();
});
