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);
}

$(document).ready(function() {
    $("#ctl00_SearchBoxControl_keywordsTextBox").focus(function() { if (this.value == this.defaultValue) this.value = ''; }).bind('blur', function() { if (this.value == '') this.value = this.defaultValue; });
});
