function fn_imgOver(o_img,o_msg){
	if(o_msg ==0){
		o_img.src=o_img.src.replace(/_0/gi,"_1");
	}
	
}
function fn_imgOut(o_img,o_msg){
	if(o_msg ==0){
		o_img.src=o_img.src.replace(/_1/gi,"_0");
	}	
}

