function hideEmbedElements() 
{
    $("body").find('embed').each(function() {
        $(this).css('visibility', 'hidden');
    });
}

function showEmbedElements() 
{
    $("body").find('embed').each(function() {
        $(this).css('visibility', 'visible');
    });
}

function registerFlashVideoFix() 
{
    $("body").load(function(){
        hideEmbedElements();
    });
    $("body").unload(function(){
        showEmbedElements();
    });
}

function deselectProductFromOverview(productId)
{
    $("body").find("." + productId).remove();
    $("body").find("#" + productId).find("input[type=checkbox]").attr("checked", false);
}
