jQuery(document).ready(function() {
		if (jQuery("#cart-modify").length) {
			jQuery("#cart-bar li:first-child").addClass("active");
		} else if (jQuery("#cart-check").length) {
			jQuery("#cart-bar li:nth(0), #cart-bar li:nth(1)")
					.addClass("checked");
			jQuery("#cart-bar li:nth(2)").addClass("active");
		} else if (jQuery("#payment").length) {
			jQuery("#cart-bar li:nth(0), #cart-bar li:nth(1), #cart-bar li:nth(2)")
					.addClass("checked");
			jQuery("#cart-bar li:last-child").addClass("active");
		};		
});
