function glow(img){
	if (img.src.substring(img.src.length-9) != "_over.png"	) {
		img.src = img.src.substring(0, img.src.length-4) + "_over.png";
		// img.parentNode.style.backgroundImage="url(_img/menu/bg_line_glow.gif)";
		img.style.cursor = "hand";
		img.style.cursor = "pointer";
	}
}

function unglow(img){
	if (img.src.substring(img.src.length-9) == "_over.png"	) {
		img.src = img.src.substring(0, img.src.length-9) + ".png";
		// img.parentNode.style.backgroundImage="url(_img/menu/bg_line.gif)";
	}	
}
