/*//////////////////////////////

	client:   BOUNCE SNACK FOODS
	version:  v1.0
	author:   tom greenhill

//////////////////////////////*/

$(document).ready(function() {
	if($.browser.mozilla) $("input[type='radio']").not("#shipping_rate_id_ss_22").css({ margin: "8px 5px 0 0" });
	$("label[for='username_field']").text("Username:");
	$("label[for='email_field']").text("Email Address:");
	
	$("#account-orders-toggle").click(function() {
		$("#account-orders").slideToggle(500);
	});
	$("#extra_field_holder4").appendTo("fieldset:first");
	
	$("h3:contains(Checkout)").next("table").css({ backgroundPosition: "top center", height: "60px" }).find("td").css({ verticalAlign: "middle", textAlign: "center", width: "152.5px" });
	$("h3:contains(Checkout)").next("table").find("td").attr("valign", "middle");
	$(".bouncecontainer:empty").remove();
});