function switchImg(imageName, code) {	
	if (validBrowser) {
		if (code == 0) {
			eval("document.images." + imageName + ".src = " + imageName + "off.src");			
		} else {
			eval("document.images." + imageName + ".src = " + imageName + "on.src");	
		}	
	}
}


function loadImages() {

	cartoff = new Image();
	carton = new Image();
	mylistoff = new Image();
	myliston = new Image();
	bokoff = new Image();
	bokon = new Image();
	cartoff.src = "i/h_top_cart.gif";
	carton.src = "i/h_top_cart_on.gif";
	mylistoff.src = "i/h_top_my_list.gif";
	myliston.src = "i/h_top_my_list_on.gif";
	bokoff.src = "i/b_ok.gif";
	bokon.src = "i/b_ok_on.gif";

}