function EJEJC_lc(th) { return false; }
function EJEJC_config() {
	// Add this line to open PayPal checkouts in a new window (not recommended):
	//EJEJC_CPOP = true;

	// Add this line if you face any layout glitches after putting in the cart buttons:
	//EJEJC_INITCSS = false;

	// Change the background color of the dimming screen (e.g. #FFF for white):
	//EJEJC_BGCOLOR = "#F3ECCD";

	// Change opacity percentage of the dimming screen:
	EJEJC_OPACITY = 80;

	// Change the pixel width of the cart window:
	//EJEJC_WIDTH = 700;

	// Change the pixel height of the cart window:
	EJEJC_HEIGHT = 500;

	// Change the border color of the cart window (e.g. #009 for blue):
	//EJEJC_BRDRCOLOR = "#009";

	// Add this line if you want to use EJEJC_shown function (next section below):
	EJEJC_POSTCALL=true;
	EJEJC_hist=true;
}
function EJEJC_shown() {
	//document.getElementById('itemsInCart').innerHTML=EJEJC_cartsize()+" Items : Total $"+EJEJC_cartamt();
	// Will change the PayPal checkout button image:
	//jQuery("#btnPP").attr("src", "http://yourdomain/yourimage");

	// Will change the Google checkout button image:
	//jQuery("#btnGC").attr("src", "http://yourdomain/yourimage");

	// Will change the Authorize.Net/PayPal Pro Direct checkout button image:
	jQuery("#btnCC").attr("src", "http://www.mycandybarwrappers.com/checkout.jpg");

	// Change the text label at the end of each line (e.g. "Ship to Country")
	// to say whatever you wish instead of the cart's standard text labels:

	//jQuery("#country1").attr("innerHTML", "Ship to Country");
	//jQuery("#state1").attr("innerHTML", "Ship to Postal Code");
	//jQuery("#state2").attr("innerHTML", "(Update Cart after entering)");
	//jQuery("#dscnt_cd").attr("innerHTML", "Discount Code");
	//jQuery("#discount2").attr("innerHTML", "(Update Cart after entering)");
	//jQuery("#btnContShop").attr("value", "Continue Shopping");
	//jQuery("#btnUpdtCart").attr("value", "Update Cart");
	//jQuery("#tdPmnt").attr("innerHTML", "<b>Checkout:</b>");
	//jQuery("#EJEJC_closeWindowButton").attr("innerHTML", "<b>Close</b>");

        // Change "Shopping Cart" image
        //jQuery("#imgHeader").attr("src", "http://www.yourserver.com/your_image");

        // Adding a custom line of text or block of HTML inside the cart:
	jQuery("#tdPmnt").attr("innerHTML",
	  "<b>Available Shipping Methods:</b><br />USPS Priority Mail 3-5 days shipping time, estimated<br />UPS Ground: 4-6 business days shipping time, estimated<br />Express Mail: 1-2 business days shipping time, guaranteed<br /><br />Delivery time does not include processing time. Sorry, we do not ship outside of the US.");

	// Remove "continue shopping" button:
	//jQuery("#btnContShop").remove();
}

