function fixStore() {
	if (!document.getElementById) return true;
	if (!document.createElement) return true;
//	if (!document.setAttribute) return true;
	var alink = document.getElementById("store-link");
	var store_path = "/graphics/template/product_menu/m2_onlinestore.gif";
	if (store_path == "") return true;
	var store_img = document.createElement("img");
	store_img.setAttribute("src",store_path);
	var old_node = alink.childNodes;
	alink.replaceChild(store_img,old_node[0]);
}

window.onload = function() {
	fixStore();
}