function img_switch(img_name, img_file) {
	document.images[img_name].src = "/images/" + img_file;
}

function list_image_switch(li_id,img_file) {
	var elem = document.getElementById(li_id);
	
	elem.style.listStyleImage = "url(/images/"+img_file+");"

}