var hceBp = {
    bestPriceBoxName : "hcebestprice",
    envelopName : "hledejcenybpenv",
    variant : 1,
    itUrl : window.location.href,
    
    load : function() {
        document.write(unescape('%3Cscript src="http://www.hledejceny.cz/best-price/?'
                + 'url=' + escape(escape(hceBp.itUrl)) + '&amp;variant=' + escape(escape(hceBp.variant))
                + '" type="text/javascript" charset="utf-8"%3E%3C/script%3E'));        
    },

    move : function() {
        var bestPriceBox = document.getElementById(hceBp.bestPriceBoxName);
        if (bestPriceBox) {
            var placement = document.getElementById(hceBp.envelopName);
            if (placement) {
                placement.appendChild(bestPriceBox);
            }
        }
    }
}