function StripResponse(response) {
    response = response.substring(response.indexOf('<div id="JQueryPage"'));
    response = response.replace('</form>', '');
    response = response.replace('</body>', '');
    response = response.replace('</html>', '');
    return response;
}

function ShowShopHeader(baseUrl, customerNumber, language, username) {
    $(document).ready(function() {
        var currentDate = new Date();
        var dummy = currentDate.getTime();

        $.get(baseUrl + "/Infomat/Modules/ShopHeader/ShopHeader.aspx?dummy=" + dummy + "&customernumber=" + customerNumber + "&language=" + language + "&username=" + username, function(response) {
            $("div#ShoppingCartContents").html(StripResponse(response)).show();

            // JQuery tool tip
            $('a.ToolTipShopHeader').cluetip({
                dropShadowSteps: 1,
                positionBy: 'fixed',
                sticky: true,
                closePosition: 'title',
                mouseOutClose: true,
                width: '400px',
                leftOffset: '-398px',
                topOffset: '45px'
            });
        });
    });
}
