jq(document).ready(function(){

    // fix odd/even
    jq("form#checkout li:visible").toggleClass("even");
    jq("form#checkout li:visible").toggleClass("odd");
    // BDK-88, 4.
    jq("body.template-checkout #shipments input[value=\"pcommerce.shipment.parcel\"]").parent().find("span").html("Paketpost, zzgl. Portokosten gem. AGB.");
    jq("body.template-checkout #shipments input[value=\"pcommerce.shipment.parcel\"]").attr("checked","checked");
    // BDK-88, 1.
    jq("body.template-checkout #payments input[value=\"pcommerce.payment.saferpay\"]").parent().parent().hide();
    // BDK-88, 3.
    jq("body.template-checkout #payments input[value=\"pcommerce.payment.invoice\"]").parent().find("strong").html("Vorkasse/Rechnung");
    jq("body.template-checkout #payments input[value=\"pcommerce.payment.invoice\"]").parent().find("span").html("Zahlung auf Rechnung, per Vorkasse.");
    jq("body.template-checkout #payments input[value=\"pcommerce.payment.invoice\"]").attr("checked","checked");
    jq("body.template-checkout #payments input[value=\"pcommerce.payment.invoice\"]").parent().parent().toggleClass("even");
    jq("body.template-checkout #payments input[value=\"pcommerce.payment.invoice\"]").parent().parent().toggleClass("odd");
    // BDK-88, 2.
    // jq("body.template-checkout #cart td.price").each(function(){jq(this).html("EUR "+jq(this).html())});
    jq(".portletShoppingCart dd dl dd:last").html("EUR " + jq(".portletShoppingCart dd dl dd:last").html());

});
