<!--



if (document.images) {

	var profile_off = new Image();

	profile_off.src = "/images/account/subnav_acctprofile_off.gif";

	var profile_on = new Image();

	profile_on.src = "/images/account/subnav_acctprofile_roll.gif";

	

	var address_off = new Image();

	address_off.src = "/images/account/subnav_addressbook_off.gif";

	var address_on = new Image();

	address_on.src = "/images/account/subnav_addressbook_roll.gif";

	

	var myacct_off = new Image();

	myacct_off.src = "/images/account/subnav_myaccount_off.gif";

	var myacct_on = new Image();

	myacct_on.src = "/images/account/subnav_myaccount_roll.gif";

	

	var order_off = new Image();

	order_off.src = "/images/account/subnav_orderstatus_off.gif";

	var order_on = new Image();

	order_on.src = "/images/account/subnav_orderstatus_roll.gif";

	

	var payment_off = new Image();

	payment_off.src = "/images/account/subnav_paymentmethods_off.gif";

	var payment_on = new Image();

	payment_on.src = "/images/account/subnav_paymentmethods_roll.gif";

	

	var purely_off = new Image();

	purely_off.src = "/images/account/subnav_purelyforyou_off.gif";

	var purely_on = new Image();

	purely_on.src = "/images/account/subnav_purelyforyou_roll.gif";

	

	var wishlist_off = new Image();

	wishlist_off.src = "/images/account/subnav_wishlist_off.gif";

	var wishlist_on = new Image();

	wishlist_on.src = "/images/account/subnav_wishlist_roll.gif";
	

	var solution_off = new Image();

	solution_off.src = "/images/account/shopbysolution_off.gif";

	var solution_on = new Image();

	solution_on.src = "/images/account/shopbysolution_on.gif";

}



function rollOver(which) {

	if (document.images) {

		document[which].src = eval(which + "_on.src");

	}

}



function rollOff(which) {

	if (document.images) {

		document[which].src = eval(which + "_off.src");

	}

}



//-->